Python lxml 模块操作 XML 的基本使用
XML 相关的知识可以在 w3school 上进行了解。
假设你已经对 XML 的基本概念有一些了解,本文介绍了 Python lxml 模块对 XML 的一些操作方法。
lxml is the most feature-rich and easy-to-use library for processing XML and HTML in the Python language.
文中所有代码块都是基于 etree
来操作的,代码同一行后的注释为运行结果。
1 | from lxml import etree |