python 基础 xml和request

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 基础 xml和request相关的知识,希望对你有一定的参考价值。

XML

XML是实现不同语言或者程序之间的数据交换的协议,他的格式如下

技术分享
<data>
    <country name="Liechtenstein">
        <rank updated="yes">2</rank>
        <year>2023</year>
        <gdppc>141100</gdppc>
        <neighbor direction="E" name="Austria" />
        <neighbor direction="W" name="Switzerland" />
    </country>
    <country name="Singapore">
        <rank updated="yes">5</rank>
        <year>2026</year>
        <gdppc>59900</gdppc>
        <neighbor direction="N" name="Malaysia" />
    </country>
    <country name="Panama">
        <rank updated="yes">69</rank>
        <year>2026</year>
        <gdppc>13600</gdppc>
        <neighbor direction="W" name="Costa Rica" />
        <neighbor direction="E" name="Colombia" />
    </country>
</data
XML的格式

 

xml的特性

  • 标签是以一个<字符开头,上面例子中的<data>一样
  • 忽略空格
  • 标签之间可以互相嵌套,例如country 就是他的子标签

以上是关于python 基础 xml和request的主要内容,如果未能解决你的问题,请参考以下文章

python XML基础

python基础教程利用 Python ElementTree 生成 xml的实例

Python 基础 - Day 5 Learning Note - 模块 之 标准库:xml

第七章:Python基础のXML操作和面向对象(上集)

python 基础 xml和request

[python基础]xml_rpc远程调控supervisor节点进程