在python中对list求和及求积

2020-01-06 11:15:45 浏览数 (1)

代码语言:javascript复制
# 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))

0 人点赞