简体   繁体   中英

Reading xml file in python and save it to a variable?

I have tried to save the xml file in the following variable and later work on it as normal xml file. This is not working. How can I approach this situation. I need to edit the xml file without editing in the original file and without creating a new xml file. Is that possible?

comment_2 = open("cool.xml").read()

Thanks and Regards

You can use xml.etree.ElementTree to parse the XML file and then save it to a variable:

import xml.getElementTree as ET

tree = ET.parse('xml.etr.xml')
root = tree.getroot()
root.save(root)
root_variable = root_variable

Then you can save the xml file to an instance of ElementTree.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM