我使用导入xml.etree.ElementTree作为ET来解析python中的xml文件。
我试过:
import xml.etree.ElementTree as ET
tree = ET.parse('pyxml.xml')
self.root = tree.getroot()
name=root[0][0].text
username=root[0][1].text
password=root[0][2].text
host=root[0][3].text
port=root[0][4].textpyxml.xml:
<data>
<database>
<name>qwe</name>
<username>postgres</username>
<password>1234</password>
<host>localhost</host>
<port>5432</port>
</database>
</data>但是我想要XML文件,比如:
<data>
<database name="abc" username="xyz" password="dummy" host="localhost" port="5432"/>
</data>如果我喜欢这个,root.text不是working.Can --有人告诉我如何访问它吗?
发布于 2020-01-28 06:02:19
试试下面的代码,
import xml.etree.ElementTree as ET
tree = ET.parse('/Users/a-8525/Documents/tmp/pyxml.xml')
root = tree.getroot()
database = root.find('database')
attribute = database.attrib
name = attribute['name']
username = attribute['username']
password =attribute['password']
host = attribute['host']
port = attribute['port']https://stackoverflow.com/questions/59942751
复制相似问题