发布时间:2019-09-22 08:06:11编辑:auto阅读(3075)
# 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——获取更加详细的异常信息
53507
40333
34741
30490
25371
25163
23578
18835
15154
14665
1133°
1054°
1124°
1140°
1174°
1325°
1288°
1267°
1363°
1304°