在python中对list求和及求积

# the basic way
s = 0
for x in range(10):
    s += x

# the right way
s = sum(range(10))


# the basic way
s = 1
for x in range(1, 10):
    s *= x

# the other way
from operator import mul
reduce(mul, range(1, 10))
posted @ 2015-06-17 12:36  chenqiangzhishen  阅读(12174)  评论(0编辑  收藏  举报