I write a program using just like below
from xml.etree.ElementTree import ET
xmlroot = ET.fromstring([my xml content])
for element in xmlroot.iterfind(".//mytag"):
do some thing
it works fine on my python (v2.7.1), but after I copy it to another computer installed with python v2.6.x, iterfind()
is not supported, on python document, below description listed
findall(match)
Finds all matching subelements, by tag name or path. Returns a list containing all matching elements in document order.
iterfind(match)
Finds all matching subelements, by tag name or path. Returns an iterable yielding all matching elements in document order.
New in version 2.7.
my question is: these 2 function is same or not? what's difference between these two functions
Like indicated in the docs -
findall returns the complete list of elements matching the
match
xpath , we can use subscripts to access them , example -We can also use for loop to iterate through the list.
iterfind would be faster than findall in cases where you actually want to iterate through the returned list(which is most of the time from my experience) , since findall has to create the complete list before returning, whereas iterfind finds (yields) the next element that matches the
match
only on iterating and call tonext(iter)
(which is what is internally called when iterating through the list usingfor
or such constructs).In cases where you want the list, Both seem to have similar timing.
Performance test for both cases -