Python基础-----while循环练习

Posted Meanwey

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python基础-----while循环练习相关的知识,希望对你有一定的参考价值。

一、使用while循环输出1 2 3 4 5 6   8 9 10

 1 #!/usr/bin/evc python 3
 2 # -*- coding:utf-8 -*-
 3 
 4 ‘‘‘
 5 使用while循环输出1 2 3 4 5 6   8 9 10
 6 ‘‘‘
 7 
 8 count = 1
 9 while count<=10:
10     if count == 7:
11         pass
12     else:
13         print(count)
14     count += 1

二、使用while循环输出1~100的和

 1 #!/usr/bin/evc python 3
 2 # -*- coding:utf-8 -*-
 3 
 4 ‘‘‘
 5 使用while循环输出1~100的和
 6 ‘‘‘
 7 
 8 i = 1
 9 sum = 0
10 while i<=100:
11     sum = sum + i
12     i += 1
13 print(sum)

三、使用while循环输出1~100内所有的奇数

#!/usr/bin/evc python 3
# -*- coding:utf-8 -*-

‘‘‘
使用while循环输出1~100内所有的奇数
‘‘‘
i = 0
while i < 100:
    i+=1
    while i % 2 != 0:
        print(i)
        i += 1

四、使用while循环输出1~100内所有的偶数

#!/usr/bin/evc python 3
# -*- coding:utf-8 -*-

‘‘‘
使用while循环输出1~100内所有的偶数
‘‘‘
i = 0
while i < 100:
    i+=1
    while i % 2 == 0:
        print(i)
        i += 1

五、使用while循环输出1-2+3-4+5.....+99的和

 1 #!/usr/bin/evc python 3
 2 # -*- coding:utf-8 -*-
 3 
 4 ‘‘‘
 5 使用while循环输出1-2+3-4+5.....+99的和
 6 ‘‘‘
 7 
 8 i = 1
 9 sum = 0
10 while i<=99:
11     if i % 2 == 0:
12         sum = sum - i
13     else:
14         sum = sum + i
15     i += 1
16 print(sum)

六、判断用户登录,三次机会重试

 1 #!/usr/bin/evc python 3
 2 # -*- coding:utf-8 -*-
 3 
 4 ‘‘‘
 5 用户登录,三次机会重试
 6 ‘‘‘
 7 
 8 
 9 count = 1
10 while count <= 3:
11 
12     if input(请输入用户名:) == Liming:
13         print(登录成功!)
14         break
15     else:
16         print(请重试!)
17     count += 1
18 else:
19     print(已失败三次,今日无法登录。)

 

以上是关于Python基础-----while循环练习的主要内容,如果未能解决你的问题,请参考以下文章

Python基础-----while循环练习

08: python基础练习题

python基础练习-循环

python入门 while 循环练习

python-while循环的练习题

python 基础0-练习题