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 內的所有奇數
'''
學習中遇到問題沒人解答?小編創建了一個Python學習交流群:725638078
尋找有志同道合的小伙伴,互幫互助,群里還有不錯的視頻學習教程和PDF電子書!
'''
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
結尾給大家推薦一個非常好的學習教程,希望對你學習Python有幫助!
Python基礎入門教程推薦:更多Python視頻教程-關注B站:Python學習者
Python爬蟲案例教程推薦:更多Python視頻教程-關注B站:Python學習者