标签:strong code span class bsp nbsp 初识python style 输出
初识python
1、输出1 2 3 4 5 6 8 9 10
2、1~100的和
3、1~100的所有奇数/偶数
4、1-2+3-4+5~+99-100的值
x=1 while (x<11): if(x==7): pass else : print(‘‘,x) x=x+1
x=1 sum=0 while(x<101): sum=sum+x x=x+1 print(‘‘,sum)
x=1 sum=0 while(x<101): if(x%2==1): sum=sum+x else: sum=sum-x x=x+1 print(‘‘,sum)
标签:strong code span class bsp nbsp 初识python style 输出
原文地址:https://www.cnblogs.com/tbx-x/p/9904479.html