python基礎 while迴圈練習

大雄45發表於2022-10-02
導讀 這篇文章主要給大家分享的是5道關於python基礎 while迴圈練習題,無論學習什麼語言,練習都是必不可少的,下面文章的練習題挺精湛的,需要的朋友可以參考一下
1. 使用while迴圈輸出1 2 3 4 5 6 8 9 10
count=0
 
while count <10:
 
    count+=1
 
    print(count)
2. 求1-100的所有數的和
count=0
 
total=0
 
#定義兩個變數
 
while count <=100:
 
     total +=count  # 每迴圈一次,total的count都需要累計加一次
 
     count=count+1  #每迴圈一次,count都需要增加1
 
 
 
print(total)  #輸出結果
3. 輸出 1-100 內的所有奇數
count=1
 
while count<=100:
 
  if  count%2 != 0:
 
      print(count)
 
  count+=1
4.輸出 1-100 內的所有偶數
count=1
 
while count<=100:
 
  if  count%2 != 1:
 
      print(count)
 
  count+=1
5. 使用者登陸(三次機會重試)
while count<3:
 
    name=input("請輸入使用者名稱")
 
    password=input("請輸入密碼")
 
    if name=="huxiaohui" and password=="123456":
 
        print("你答對啦")
 
        break
 
    else:
 
        print("錯啦 再來一次")
 
 
 
    count+=1

原文來自:

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69955379/viewspace-2847365/,如需轉載,請註明出處,否則將追究法律責任。

相關文章