gpt4 book ai didi

python - 错误 : No such file or directory

转载 作者:行者123 更新时间:2023-11-28 20:27:37 26 4
gpt4 key购买 nike

我正在尝试使用 Python 从 XML 文件中提取数据。我尝试了以下代码。

from xml.etree.ElementTree import ElementTree
tree = ElementTree()
tree.parse("data_v2.xml")

错误信息:

IOError: [Errno 2] No such file or directory: 'data_v2.xml'.

最佳答案

这不是 XML 错误。这意味着 data_v2.xml 不存在——系统(操作系统)找不到它。也许这个名字是错误的,也许你需要提供完整的路径。

import traceback
# ...
try:
input_fname = "data_v2.xml"
tree.parse(input_fname)
# ...
except IOError:
ex_info = traceback.format_exc()
print('ERROR!!! Cannot parse file: %s' % (input_fname))
print('ERROR!!! Check if this file exists and you have right to read it!')
print('ERROR!!! Exception info:\n%s' % (ex_info))

关于python - 错误 : No such file or directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8268150/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com