我需要使用Python提取“文本”标签内的文本。
<titlePart>
<text>text sample 1 <emdash/> test sample 2</text>
</titlePart>
使用以下代码,我只能提取“文本样本1”,而不能提取“文本样本2”。
from xml.etree import ElementTree
docs = dom.find('titlePart/text')
print(docs.text)
out : 'text sample 1'
任何帮助将不胜感激。