第一:我是一个新的乞求。使用 python ..所以请帮帮我。我正在尝试使用 Python 读取 XML 文件。我的 xml 文件名是 rgpost.xml
<volume name="sp" type="span" operation="create">
<driver>HDD1</driver>
</volume>
我的代码:
import xml.etree.ElementTree as ET
doc = ET.parse("rgpost.xml")
s = doc.find("volume")
print s.attrib["name"]
运行此程序时出现错误:
sp:~# python volume_check.py volume
Traceback (most recent call last):
File "volume_check.py", line 13, in <module>
print s.attrib["name"]
AttributeError: 'NoneType' object has no attribute 'attrib'
提前致谢