你可以使用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’標簽的內容。