码迷,mamicode.com
首页 > 其他好文 > 详细

ceshi

时间:2018-12-05 00:20:46      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:style   dump   coding   span   text   int   element   roo   imp   

 1 # coding:utf-8
 2 ‘‘‘
 3 auther:sds
 4 ‘‘‘
 5 import xml.etree.ElementTree as ET
 6 class Pyxml():
 7     def __init__(self,filename):
 8         self.filename=filename
 9         self.tree = ET.parse(filename)
10         self.root = self.tree.getroot()
11     def find(self):
12         country = self.root[0]
13 
14         last_ele = country[len(list(country)) - 1]
15         print(len(list(country)))
16         last_ele.tail = \n\t\t?????\n\t\t?????
17         elem5 = ET.Element("test_insert")
18         elem5.text = "elem 5"
19         country.insert(60, elem5)
20         #ET.dump(country)
21 
22 
23 
24 class test():
25     def __init__(self):
26         a=Pyxml("tests/test.xml")
27         a.find()
28 test()

 

ceshi

标签:style   dump   coding   span   text   int   element   roo   imp   

原文地址:https://www.cnblogs.com/shends/p/10067851.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!