How to retrieve the parent node using cElementTree?

前端 未结 3 1737
鱼传尺愫
鱼传尺愫 2021-01-12 08:44

for the xml


  
     data1
  
  
     data2         


        
3条回答
  •  不知归路
    2021-01-12 09:26

    parent_map = dict((c, p) for p in tree.getiterator() for c in p)
    parent_map[el].remove(el)
    

提交回复
热议问题