导语:
本文主要介绍了关于python XML数据是什么的相关知识,希望可以帮到处于编程学习途中的小伙伴
1、概念
XML 格式的数据既便于机器读取,也便于人工读取。
xml 格式说明:
Tag: 使用<和>包围的部分;
Element:被Tag包围的部分,比如2003,可以认为是一个节点,可以有子节点;
Attribute:在Tag中可能存在的 name/value 对,如示例中的 title="Enemy Behind",一般表示属性。
2、实例
<?xml version="1.0" encoding="UTF-8"?>
<collection shelf="New Arrivals">
<movie title="Enemy Behind">
<type>War, Thriller</type>
<format>DVD</format>
<year>2003</year>
<rating>PG</rating>
<stars>10</stars>
<description>Talk about a US-Japan war</description>
</movie>
<movie title="Transformers">
<type>Anime, Science Fiction</type>
<format>DVD</format>
<year>1989</year>
<rating>R</rating>
<stars>8</stars>
<description>A schientific fiction</description>
</movie>
<movie title="Trigun">
<type>Anime, Action</type>
<format>DVD</format>
<episodes>4</episodes>
<rating>PG</rating>
<stars>10</stars>
<description>Vash the Stampede!</description>
</movie>
<movie title="Ishtar">
<type>Comedy</type>
<format>VHS</format>
<rating>PG</rating>
<stars>2</stars>
<description>Viewable boredom</description>
</movie>
</collection>
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python如何用函数删除空格10/19
- ♥ 如何在python中使用int函数08/23
- ♥ python3可以写app吗?11/23
- ♥ Python 中的 val() 是什么意思?08/19
- ♥ Python不能缩进吗?10/12
- ♥ 如何在python中表达等待10/30
内容反馈