通过Python计算列表中的数字总和

时间:2009-07-23 20:52:18

标签: python

我的数据

466.67
465.56
464.44
463.33
462.22
461.11
460.00
458.89
...

我在Python中运行

sum(/tmp/1,0)

我收到错误。

如何通过Python计算值的总和?

2 个答案:

答案 0 :(得分:13)

f=open('/tmp/1')
print sum(map(float,f))

答案 1 :(得分:11)

sum(float(i) for i in open('/tmp/1.0'))