运用循环求和( sum operation in python)
Posted kaiming
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了运用循环求和( sum operation in python)相关的知识,希望对你有一定的参考价值。
1.for loop
example 1: sum of 1+2+...+10
**********
>>> sum=0
>>> for x in [1,2,3,4,5,6,7,8,9,10]:
sum=sum+x
>>> print(sum)
**********
example 2: sum of 1+2+...+100
**********
sum=0
for x in range (101):
sum=sum+x
print(sum)
********
以上是关于运用循环求和( sum operation in python)的主要内容,如果未能解决你的问题,请参考以下文章