python Coursera - 使用XML打开网站并解析数字并总结它们。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Coursera - 使用XML打开网站并解析数字并总结它们。相关的知识,希望对你有一定的参考价值。

import urllib
import xml.etree.ElementTree as ET
numbers = list()
link = 'http://python-data.dr-chuck.net/comments_184196.xml'
soup = urllib.urlopen(link).read()
stuff = ET.fromstring(soup)
lst = stuff.findall('comments/comment')
for item in lst:
    value = item.find('count').text
    numbers.append(value)
numbers = ([int(i) for i in numbers])
print sum(numbers)

以上是关于python Coursera - 使用XML打开网站并解析数字并总结它们。的主要内容,如果未能解决你的问题,请参考以下文章

python Coursera - 获取位置代码,lat long(可与google一起使用)

当我在 coursera 中使用 python 在数据科学中运行以下代码时出错

Coursera课程《大家的python》(Python for everyone)课件

python Coursera - 打开文本文件并使用正则表达式计算嵌入在文本中的数字。

使用用户输入并返回最小和最大数字 - 练习 coursera Python

Coursera课程《Python数据结构》中课件