2010-03-04 34 views

回答

2

使用ElementTree的:

import xml.etree.ElementTree as E 
e = E.parse("test.xml") 
print(e.find("type").text) 

使用minidom命名:

import xml.dom.minidom 
d = xml.dom.minidom.parse("test.xml") 
print(d.getElementsByTagName("type")[0].firstChild.data) 

使用BeautifulSoup

from BeautifulSoup import BeautifulStoneSoup 
soup = BeautifulStoneSoup(open("test.xml")) 
print(soup.find("type").text)