OSError: [Errno 22] Invalid argument: 'G:\\BaiduNetdiskDownload\\chapter14\x0ciles\\products.xml'

osError 错误
在打开文件的时候,注意要用"/",向左的反斜杠,而不是向右的,注意!!
FileNotFoundError错误
我的天呀,刚才一直想要用python打开一个xml文件,一直出现这个错误,终于好了,个人建议:
打开的文件路径最好用绝对路径,复制粘贴的时候,注意把“\”右斜杠统统换成“/"左斜杠

from xml.etree.ElementTree import parse
doc=parse('**F:/Pythonworkspace/files/products.xml**')
for item in doc.iterfind('products/product'):
    id=item.findtext('id')
    name=item.findtext('name')
    price=item.findtext('price')
    print('uuid','=',item.get('uuid'))
    print('id','=',id)
    print('name','=',name)
    print('price','=',price)
    print('-----------')

你可能感兴趣的:(python)