Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我得到了以下xml 代码。如何使用 minidom.parse 函数从该 xml 中获取“评论”?我可以获得“用户:”和单元格值,但不能使用“评论”。
假设您的 xml 代码保存到“test.xml”:
from xml.dom.minidom import parse dom1 = parse("test.xml") for node in dom1.getElementsByTagName('t'): print node.childNodes[0].nodeValue
这应该打印所有标签“”的内部值。