相关文章推荐
豪爽的刺猬  ·  JAVA ...·  2 周前    · 
成熟的橡皮擦  ·  [ML]Community ...·  9 月前    · 
玩足球的稀饭  ·  c - import libssh ...·  1 年前    · 
备案 控制台
学习
实践
活动
专区
工具
TVP
写文章
专栏首页 ops技术分享 Python格式处理--xml
1 0

海报分享

原创

Python格式处理--xml

  1. <?xml version="1.0"?>
  2. <menu>
  3. <breakfast hours="7-11">
  4. <item price="$6.00">breakfast burritos</item>
  5. <item price="$4.00">pancakes</item>
  6. </breakfast>
  7. <lunch hours="11-3">
  8. <item price="$5.00">hamburger</item>
  9. </lunch>
  10. <dinner hours="3-10">
  11. <item price="8.00">spaghetti</item>
  12. </dinner>
  13. </menu>

  1. import xml.etree.ElementTree as et
  2. tree = et.ElementTree(file='menu.xml')
  3. root = tree.getroot()
  4. root.tag
  5. #tag是标签字符串,attrib是属性的一个字典
  6. for child in root:
  7. print('tag:', child.tag, 'attributes:', child.attrib)
  8. for grandchild in child:
  9. print('\ttag:', grandchild.tag, 'attributes:', grandchild.attrib)
  10. len(root) #菜单选择数目
  11. len(roo[0]) #早餐项的数目

原创声明,本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。