You are viewing a single comment's thread. Return to all comments →
import sys import xml.etree.ElementTree as etree def get_attr_number(node): return sum(len(x.attrib) for x in node.iter()) if __name__ == '__main__': sys.stdin.readline() xml = sys.stdin.read() tree = etree.ElementTree(etree.fromstring(xml)) root = tree.getroot() print(get_attr_number(root))
Seems like cookies are disabled on this browser, please enable them to open this website
XML 1 - Find the Score
You are viewing a single comment's thread. Return to all comments →