1. 使用while循環輸出1 2 3 4 5 6 8 9 10
1
2
3
4
5
6
7
|
count = 0 while count < 10 : count + = 1 print (count) |
2. 求1-100的所有數的和
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
count = 0 total = 0 #定義兩個變量 while count < = 100 : total + = count # 每循環一次,total的count都需要累計加一次 count = count + 1 #每循環一次,count都需要增加1 print (total) #輸出結果 |
3. 輸出 1-100 內的所有奇數
1
2
3
4
5
6
7
8
9
|
count = 1 while count< = 100 : if count % 2 ! = 0 : print (count) count + = 1 |
4.輸出 1-100 內的所有偶數
1
2
3
4
5
6
7
8
9
|
count = 1 while count< = 100 : if count % 2 ! = 1 : print (count) count + = 1 |
5. 用戶登陸(三次機會重試)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
while count< 3 : name = input ( "請輸入用戶名" ) password = input ( "請輸入密碼" ) if name = = "huxiaohui" and password = = "123456" : print ( "你答對啦" ) break else : print ( "錯啦 再來一次" ) count + = 1 |
到此這篇關于 5道關于python基礎 while循環練習題的文章就介紹到這了,更多相關python中while循環練習題內容請搜索服務器之家以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持服務器之家!
原文鏈接:https://www.cnblogs.com/python960410445/p/15558372.html