如何在python中查看xml文件的内容

时间:2018-05-27 08:45:29

标签: python

我很难找到一种方法来查看xml文件的内容。我做了很多搜索,我所做的唯一进步是继续运行我的代码而没有任何结果

2 个答案:

答案 0 :(得分:0)

查看BeautifulSoup包并使用lxml解析器。

答案 1 :(得分:0)

基于此网址: https://pymotw.com/2/xml/etree/ElementTree/parse.html

相关代码:

from xml.etree import ElementTree

with open('example.xml', 'rt') as f:
    tree = ElementTree.parse(f)

print tree

这将打印XML文件。 它也适用于解析文件和搜索元素。