Python 編程中 while 語句用於循環執行程序,即在某條件下,循環執行某段程序,以處理須要重複處理的相同任務。其基本形式爲:
while 判斷條件:
執行語句……
執行語句能夠是單個語句或語句塊。判斷條件能夠是任何表達式,任何非零、或非空(null)的值均爲true。
當判斷條件假false時,循環結束。
執行流程圖以下:python
實例:編程
#!/usr/bin/pythoncount = 0while (count < 9): print 'The count is:', count count = count + 1print "Good bye!"
以上代碼執行輸出結果:less
The count is: 0The count is: 1The count is: 2The count is: 3The count is: 4The count is: 5The count is: 6The count is: 7The count is: 8Good bye!
while 語句時還有另外兩個重要的命令 continue,break 來跳過循環,continue 用於跳過該次循環,break 則是用於退出循環,此外"判斷條件"還能夠是個常值,表示循環一定成立,具體用法以下:阿里雲
# continue 和 break 用法i = 1while i < 10: i += 1 if i%2 > 0: # 非雙數時跳過輸出 continue print i # 輸出雙數二、四、六、八、10i = 1while 1: # 循環條件爲1一定成立 print i # 輸出1~10 i += 1 if i > 10: # 當i大於10時跳出循環 break;
若是條件判斷語句永遠爲 true,循環將會無限的執行下去,以下實例:spa
#!/usr/bin/python# -*- coding: UTF-8 -*-var = 1while var == 1 : # 該條件永遠爲true,循環將無限執行下去 num = raw_input("Enter a number :") print "You entered: ", numprint "Good bye!"
以上實例輸出結果:code
Enter a number :20You entered: 20Enter a number :29You entered: 29Enter a number :3You entered: 3Enter a number between :Traceback (most recent call last): File "test.py", line 5, in <module> num = raw_input("Enter a number :")KeyboardInterrupt
注意:以上的無限循環你能夠使用 CTRL+C 來中斷循環。blog
在 python 中,while … else 在循環條件爲 false 時執行 else 語句塊:ip
#!/usr/bin/pythoncount = 0while count < 5: print count, " is less than 5" count = count + 1else: print count, " is not less than 5"
以上實例輸出結果爲:開發
0 is less than 51 is less than 52 is less than 53 is less than 54 is less than 55 is not less than 5
相似 if 語句的語法,若是你的 while 循環體中只有一條語句,你能夠將該語句與while寫在同一行中, 以下所示:get
#!/usr/bin/pythonflag = 1while (flag): print 'Given flag is really true!'print "Good bye!"
注意:以上的無限循環你能夠使用 CTRL+C 來中斷循環。
Python更多課程:阿里雲大學——開發者課堂