我正在尝试解析一个较大的xml文件(超过50mb)。获取以下解析错误。随附文件供参考。 File
import xml.etree.cElementTree as ET
tree = ET.parse('input_file.xml')
error
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/xml/etree/ElementTree.py", line 598, in parse
self._root = parser._parse_whole(source)
File "<string>", line unknown
ParseError: no element found: line 21, column 0
您的XML格式不正确,ElementTree无法对其进行解析。请查看您的XML文件,并检查其是否具有正确的结束标记,也许是特殊字符和其他内容。