私は以下のようなxmlファイルを持っています
<?xml version="1.0" encoding="utf-8"?>
<myTable xmlns="http://schemas.microsoft.com/windows/2008">
<my id="1">Hi this is one</my>
<my id="2">Hi this is one</my>
<my id="6">Hi this is one</my>
<my id="7">Hi this is one</my>
<my id="8">Hi this is one</my>
<my id="9">Hi this is one</my>
</myTable>
最初の'myid = "1"'に(1)を追加したいので、結果のxmlは次のようになります
<?xml version="1.0" encoding="utf-8"?>
<myTable xmlns="http://schemas.microsoft.com/windows/2008">
<my id="1">Hi this is one(1)</my>
<my id="2">Hi this is one</my>
<my id="6">Hi this is one</my>
<my id="7">Hi this is one</my>
<my id="8">Hi this is one</my>
<my id="9">Hi this is one</my>
</myTable>
私はこれをPythonの正規表現で実行したい
ありがとう