这是我的代码:
import xml.etree.ElementTree as ET
import random
tree = ET.parse('news.xml')
root = tree.getroot()
channel = root.find('channel')
for item in channel.findall('item'):
title = item.find('title').text
description = item.find('description').text
link = item.find('link').text
print random.choice(title)
这会从每个标题对象中打印出一个随机字符。我想打印出一个完整的标题字符串。这是原始的 xml 文件:http ://www.11alive.com/rss/local/3/10.xml