I am trying to read a xml file using python. I am using jupyter to run the code, when I run it, the pc gets stuck (it does not response, it dows not show any error). The xml file is in the same folder as my jupyter notebook.
The file has more than 250000 rows and 150 columns
import xml.etree.ElementTree as ET
mytree = ET.parse('NameFile.xml')
myroot = mytree.getroot()
print(myroot)