我有一个正在使用 pythonlxml.objectify
库读取的 XML 文件。
我没有找到获取 XML 注释内容的方法:
<data>
<!--Contents 1-->
<some_empty_tag/>
<!--Contents 2-->
</data>
我能够检索评论(有更好的方法吗?xml.comment[1]
似乎不起作用):
xml = objectify.parse(the_xml_file).getroot()
for c in xml.iterchildren(tag=etree.Comment):
print c.???? # how do i print the contets of the comment?
# print c.text # does not work
# print str(c) # also does not work
正确的方法是什么?