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

到此這篇關於 5道關於python基礎 while循環練習題的文章就介紹到這瞭,更多相關python中while循環練習題內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: