Python While 迴圈語句
Python程式設計中while語句用於迴圈執行程序,即在某條件下,迴圈執行某段程序,以處理需要重複處理的相同任務。
其基本形式為:(建議學習:Python影片教學)
while 判断条件: 执行语句……
執行語句可以是單一語句或語句塊。判斷條件可以是任何表達式,任何非零、或非空(null)的值均為true。
當判斷條件假false時,迴圈結束。
while 語句時還有另外兩個重要的指令continue,break 來跳過循環,continue 用來跳過該次循環,break 則是用於退出循環,此外"判斷條件"也可以是常值,表示迴圈必定成立,具體用法如下:
# continue 和 break 用法 i = 1while i < 10: i += 1 if i%2 > 0: # 非双数时跳过输出 continue print i # 输出双数2、4、6、8、10 i = 1while 1: # 循环条件为1必定成立 print i # 输出1~10 i += 1 if i > 10: # 当i大于10时跳出循环 break
迴圈使用else 語句
在python 中,while …else 在循環條件為false 時執行else 語句區塊:
#!/usr/bin/python count = 0 while count < 5: print count, " is less than 5" count = count + 1 else: print count, " is not less than 5"
以上實例輸出結果為:
0 is less than 5 1 is less than 5 2 is less than 5 3 is less than 5 4 is less than 5 5 is not less than 5
更多Python相關技術文章,請造訪Python教學欄位學習!
以上是python的while如何使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!