我想解析XML或更好我試圖測試如果我可以訪問我的XML文件。不過,我在這裏得到這個錯誤:試圖從我的電腦讀取XML文件
>>>> DomTree = xml.dom.minidom.parse("usc01")
Traceback (most recent call last):
File "<pyshell#6>", line 1, in <module>
DomTree = xml.dom.minidom.parse("usc01")
File "C:\Python34\lib\xml\dom\minidom.py", line 1960, in parse
return expatbuilder.parse(file)
File "C:\Python34\lib\xml\dom\expatbuilder.py", line 910, in parse
with open(file, 'rb') as fp:
FileNotFoundError: [Errno 2] No such file or directory: 'usc01'
這是直接從Python Shell中,我試圖usc01.xml移動到python34文件夾,但還是給了我這個錯誤。
有誰知道如何解決這個問題?
你有沒有嘗試'xml.dom.minidom.parse(「usc01.xml」)' – mehtunguh
是的,我試過usc01.xml之前,但它給了我同樣的錯誤 –