温馨提示×

Python怎么提取XML标签内容

小亿
411
2024-06-04 16:33:21
栏目: 编程语言

你可以使用Python的xml.etree.ElementTree模块来提取XML标签内容。以下是一个简单的示例:

import xml.etree.ElementTree as ET

# 读取XML文件
tree = ET.parse('example.xml')
root = tree.getroot()

# 提取所有标签为'item'的内容
for item in root.findall('item'):
    # 提取标签为'title'的内容
    title = item.find('title').text
    # 提取标签为'description'的内容
    description = item.find('description').text
    
    print('Title:', title)
    print('Description:', description)

在这个示例中,我们首先使用ET.parse()函数读取XML文件,然后使用findall()方法和find()方法来提取特定标签的内容。在这个例子中,我们提取了所有标签为’item’的内容,并分别提取了’title’和’description’标签的内容。

0