我的 XML
<root>
- <Book category="Children">
<title>Harry Potter</title>
<author>J.K</author>
<year>2005</year>
<price>29.99</price>
</Book>
- <Book category="WEB">
<title>Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
</Book>
</root>
我在 python 中使用 etree
import xml.etree.ElementTree as ET
Books = ET.parse('4.xml') #parse the xml file into an elementtre
我想收到的元素列表是
BookInfo = [标题,作者,年份,价格]
2)如何正确阅读列表 BookInfo 的特定元素中的文本
谢谢