0
What does ET.fromstring() do?
2 ответов
+ 1
Hello,
fromstring() parses XML from a string directly into an Element, which is the root element of the parsed tree.
Anyways, you can learn more about it here:
https://docs.python.org/3/library/xml.etree.elementtree.html
Cheers
0
Thanks