You are viewing a single comment's thread. Return to all comments →
maxdepth = 0 def depth(elem, level): global maxdepth level = level + 1 for e in elem: depth(e, level) if(level > maxdepth): maxdepth = level``
Seems like cookies are disabled on this browser, please enable them to open this website
XML2 - Find the Maximum Depth
You are viewing a single comment's thread. Return to all comments →