iterfind()
遍历所有匹配路径表达式的元素
findall()
返回匹配元素的列表
find()
有效地只返回第一个匹配项
findtext()
返回第一个匹配的 .text 内容
说明性示例:
>>> root = etree.XML("<root><a x='123'>aText<b/><c/><b/></a></root>")
#Find a child of an Element:
>>> print(root.find("b"))
None
>>> print(root.find("a").tag)
a
#Find an Element anywhere in the tree:
>>> print(root.find(".//b").tag)
b
>>> [ b.tag for b in root.iterfind(".//b") ]
['b', 'b']
#Find Elements with a certain attribute:
>>> print(root.findall(".//a[@x]")[0].tag)
a
>>> print(root.findall(".//a[@y]"))
[]
参考: http:
//lxml.de/tutorial.html#elementpath
(此答案为本链接内容的相关选择性选择)