发布时间:2019-09-22 08:06:11编辑:auto阅读(2708)
# 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)) 
上一篇: python使用setsockopt
下一篇: python——获取更加详细的异常信息
 51251
 50686
 41287
 38107
 32571
 29471
 28334
 23197
 23161
 21489
 1564°
 2284°
 1890°
 1829°
 2144°
 1876°
 2565°
 4298°
 4150°
 2959°