python中迴圈有兩種,while和for迴圈。
在while迴圈中,當while值為true時,while迴圈會一直進行下去(無限迴圈),直到當while值為false時,while迴圈才會停止。
#while迴圈結構(無限迴圈)#
a = true #while值#
while a :
print("hello,world!")
#簡單完整while迴圈結構示例(帶終止條件)#
a = 1
while a < 20 :
a += 1
print(a)
#簡單互動式while迴圈結構示例(注意數字輸入預設字元需要轉換)#
a = int(input("input your number:\n"))
while a <= 20 :
a += 1
print(a)
的 while迴圈 Pyhon之While迴圈語句
利用while語句,可以讓 塊一遍又一遍的執行,只要while語句的條件為true。while語句包含 break和countinue的區別 分析下面的 什麼時候迴圈執行結束?while true print please type your name name input if name your...
for迴圈,while迴圈,do while迴圈
for int i 0 i 5 i while true for 迴圈和while 迴圈滿足條件才能進入迴圈體,do while 迴圈先進行一次迴圈才去判斷迴圈條件是否成立,如果成立繼續進入迴圈體進行迴圈,否則退出迴圈。break return continue 的區別。如果break包含在巢狀迴圈...
python基礎for迴圈和while迴圈(十)
while 迴圈 a 10 while a 0 print a print 結束 for迴圈 a 12345 for item in a print item b 1,2,3,4 for item in b print item c a b c d for item in c print item ...