0
xmlタグ内のテキストをBeautifulSoupオブジェクトに変更した後で、単純に変更したいと考えています。BeautifulSoup4:xmlタグ内のテキストを変更する
現在のコード:私のコンソールでこのコードを実行している
example_string = '<conversion><person>John</person></conversion>'
bsoup = BeautifulSoup(example_string)
bsoup.person.text = 'Michael'
は、このエラーをレンダリングする:
Traceback (most recent call last):
File "<stdin>", line 3, in <module>
AttributeError: can't set attribute
にはどうすればperson
xmlタグ内の値を変更できますか?
おかげで、完璧に動作します – Paul