从Web抓取后,只获取列表中的数字

时间:2016-02-11 22:32:17

标签: python list xpath scrapy extract

我想从这个列表中仅提取数字,同时返回它们的平均值。

有人可以帮忙吗?

enter image description here

2 个答案:

答案 0 :(得分:0)

nums = []
for txt in star:
    nums += float(txt.split()[1]), 

答案 1 :(得分:0)

<ol>
  <li>Some text here</li>
  <li>Some more text here..</li>
  <li>Oh yeah, here's some pretty text</li>
</ol>