从Python3中的XML中提取<emdash>标记

时间:2018-08-12 14:00:47

标签: python-3.6

我需要使用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'

任何帮助将不胜感激。

0 个答案:

没有答案