I\'ve read the remove example here and the example here is not applicable to me.
remove
My xml file reads:
some text
You guys are not straight to the point. I've combined my knowledge with the answers here and came out with this:
for i, child in enumerate(self.root): if path == i: self.root.remove(child) break
where path is the index of the item I want to remove.
path