为什么我不能读取XML示例文件。 xml.etree.ElementTree.ParseError:语法错误:第1行,第0列

时间:2017-08-14 11:24:28

标签: python xml python-3.x xml-parsing

我是编程和python的新手。我想学习通过Python 3.6修改XML文件。 我在https://docs.python.org/3/library/xml.etree.elementtree.html

中创建了一个XML文件

例子文件:

<?xml version="1.0"?>
<data>
    <country name="Liechtenstein">
        <rank>1</rank>
        <year>2008</year>
        <gdppc>141100</gdppc>
        <neighbor name="Austria" direction="E"/>
        <neighbor name="Switzerland" direction="W"/>
    </country>
    <country name="Singapore">
        <rank>4</rank>
        <year>2011</year>
        <gdppc>59900</gdppc>
        <neighbor name="Malaysia" direction="N"/>
    </country>
    <country name="Panama">
        <rank>68</rank>
        <year>2011</year>
        <gdppc>13600</gdppc>
        <neighbor name="Costa Rica" direction="W"/>
        <neighbor name="Colombia" direction="E"/>
    </country>
</data>

当我测试第一个块时:

import xml.etree.ElementTree as ET
tree = ET.parse('C:\Program Files\Python36\programele\country_data.xml')
root = tree.getroot()
print(root)

它给了我这个错误:

Traceback (most recent call last):
  File "C:/Program Files/Python36/programele/farmi.py", line 3, in <module>
    tree = ET.parse('C:\Program Files\Python36\programele\country_data.xml')
  File "C:\Program Files\Python36\lib\xml\etree\ElementTree.py", line 1196, in parse
    tree.parse(source, parser)
  File "C:\Program Files\Python36\lib\xml\etree\ElementTree.py", line 597, in parse
    self._root = parser._parse_whole(source)
  File "<string>", line None
xml.etree.ElementTree.ParseError: syntax error: line 1, column 0

我甚至试过这个ET.fromstring(open('country_data.xml').read())并且它没有用。

我感谢任何建议和信息。

谢谢

1 个答案:

答案 0 :(得分:0)

在我的案例中,我发现 xml 文件无效。也就是说,该文件没有 xml 文件结构。我建议您做的是通过在文本编辑器中打开来查看 xml 文件的内容,并且可以轻松查看文件结构。

但是,如果您正在处理大量 xml 文件,并且您不知道您的 xml 文件是否无效,您应该考虑在您的 Python 代码中添加一个“try/except”块。像这样:

试试: 树 = ET.parse(文件) root = tree.getroot() 除了: 通过