我有以下代碼:Python XML:如何將節點內容視爲字符串?
from xml.etree import ElementTree
tree = ElementTree.parse(file)
my_val = tree.find('./abc').text
這裏是一個XML片段:
<item>
<abc>
<a>hello</a>
<b>world</b>
awesome
</abc>
</item>
我需要string
型my_val
包含
<a>hello</a>
<b>world</b>
awesome
但它顯然解析爲None
看看美麗的湯,它會適合你完美。 https://www.crummy.com/software/BeautifulSoup/bs4/doc/ – Mikael