最初 : 私は新しい物乞いです。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'
前もって感謝します