码迷,mamicode.com
首页 > 编程语言 > 详细

python之路(一)

时间:2018-11-04 19:29:56      阅读:192      评论:0      收藏:0      [点我收藏+]

标签: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=0
while(x<101):
    if(x%2==1):
        print(‘‘,x)
    x=x+1
x=0
while(x<101):
    if(x%2==0):
        print(‘‘,x)
    x=x+1
  
x=1
sum=0
while(x<101):
    if(x%2==1):
        sum=sum+x
    else:
        sum=sum-x
    x=x+1
print(‘‘,sum)

 

python之路(一)

标签:strong   code   span   class   bsp   nbsp   初识python   style   输出   

原文地址:https://www.cnblogs.com/tbx-x/p/9904479.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!