以下の xml コードのパラメータ P_ModelName と P_ModelYear の値を、Python 関数を使用して変数 Var_modelname と Var_modelyear にある値に変更する必要があります。
Var_modelname = OEM_2020 Var_modelyear = 2020
Python関数を使用してXMLでこれら2つのパラメータ値を変更する方法を教えてください
編集前の XML コード:
<PARAMETER xsi:type="parameterEntry">
<NAME xsi:type="unicode">P_ModelName</NAME>
<VALUE format-rev="1" xsi:type="valueBaseExpression">
<VALUE xsi:type="unicode">OEM_2019</VALUE>
</VALUE>
</PARAMETER>
<PARAMETER xsi:type="parameterEntry">
<NAME xsi:type="unicode">P_ModelYear</NAME>
<VALUE format-rev="1" xsi:type="valueBaseExpression">
<VALUE xsi:type="unicode">2019</VALUE>
</VALUE>
</PARAMETER>
Python 関数は、以下のように P_ModelName = OEM_2020 および P_ModelYear=2020 で xml コードを編集する必要があります。
編集後の XML コード:
<PARAMETER xsi:type="parameterEntry">
<NAME xsi:type="unicode">P_ModelName</NAME>
<VALUE format-rev="1" xsi:type="valueBaseExpression">
<VALUE xsi:type="unicode">OEM_2020</VALUE>
</VALUE>
</PARAMETER>
<PARAMETER xsi:type="parameterEntry">
<NAME xsi:type="unicode">P_ModelYear</NAME>
<VALUE format-rev="1" xsi:type="valueBaseExpression">
<VALUE xsi:type="unicode">2020</VALUE>
</VALUE>
</PARAMETER>