Python基礎03
阿新 • • 發佈:2019-04-17
size 結束 -s 結果 div 條件判斷 if條件 whlie循環 str
while循壞
while屬於條件判斷
條件滿足====>執行
條件不滿足====>退出循環
whlie循環格式
while 條件 :
執行語句
1 while 1 == 1: 2 print("死循環了") # 條件一直滿足,所以一直循環
加結束條件
a = 0
while a < 10:
print(a)
a += 1 # +=是自增的意思,當a等於10的時候,條件不滿足就退出循環
continue的使用
# 跳出出當次循環,回到while條件判斷 a = 0 while a < 10: a+= 1 if a == 5: # 當a等於5,滿足if條件,執行continue,跳出本次循環 continue print(a)
執行結果為:
1
2
3
4
6
7
8
9
10
break
# 終止while循環. a = 0 while a < 10: a += 1 if a == 5: continue print(a) break # print 1之後執行break,終止while循環 執行結果為:
1
Python基礎03