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



免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM