分享文章到朋友圈
海报分享
<?xml version="1.0"?>
<menu>
<breakfast hours="7-11">
<item price="$6.00">breakfast burritos</item>
<item price="$4.00">pancakes</item>
</breakfast>
<lunch hours="11-3">
<item price="$5.00">hamburger</item>
</lunch>
<dinner hours="3-10">
<item price="8.00">spaghetti</item>
</dinner>
</menu>
import xml.etree.ElementTree
as et
tree = et.ElementTree(file='menu.xml')
root = tree.getroot()
root.tag
#tag是标签字符串,attrib是属性的一个字典
for child in root:
print('tag:', child.tag,
'attributes:', child.attrib)
for grandchild in child:
print('\ttag:', grandchild.tag,
'attributes:', grandchild.attrib)
len(root)
#菜单选择数目
len(roo[0])
#早餐项的数目
原创声明,本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
1、时间转换 时间转换是指字符型的时间格式数据,转换成为时间型数据的过程。 一般从csv导入过来的文件,时间都保存为字符型格式的,需要转换。 时间转换函数: d...
利用Windows Phone 7手机的OneNote Mobile,用户可以随时以文字、图片或者录音来记录灵感,并通过Windows Live SkyDriv...
XML是实现不同语言或程序之间进行数据交换的协议; 通常浏览器返回的字符串有三种格式: 1、HTML 2、Json 3、XML 其中,XML可以在页面上做展示,...
用于字符串的拼接,性能更优。 字符串格式化有两种方式:百分号方式、format方式。 百分号方式比较老,而format方式是比较先进的,企图替代古老的方式,目前...
XStream、Jaxb是java中用于对象xml序列化/反序列化 的经典开源项目,利用它们将对象转换成xml时,经常会遇到日期(Date)、数字按指定格式输出...
python随着人工智能的火热着实大火了一把,我最近在用python搭一个框架,其中用到一些很基础的功能,跟大家源码分享,不一定能入君法眼,欢迎一起讨论...