Python2 While 迴圈語句

2021-10-23 10:35:26 字數 2862 閱讀 8995

python 程式設計中 while 語句用於迴圈執行程式,即在某條件下,迴圈執行某段程式,以處理需要重複處理的相同任務。其基本形式為:

while 判斷條件(condition):

執行語句(statements)……

執行語句可以是單個語句或語句塊。判斷條件可以是任何表示式,任何非零、或非空(null)的值均為true。

當判斷條件假 false 時,迴圈結束。

執行流程圖如下:

gif 演示 python while 語句執行過程

複雜一點:

以上**執行輸出結果:

the count is: 0

the count is: 1

the count is: 2

the count is: 3

the count is: 4

the count is: 5

the count is: 6

the count is: 7

the count is: 8

good bye!

while 語句時還有另外兩個重要的命令 continue,break 來跳過迴圈,continue 用於跳過該次迴圈,break 則是用於退出迴圈,此外"判斷條件"還可以是個常值,表示迴圈必定成立,具體用法如下:

# continue 和 break 用法

i = 1

while i < 10:

i += 1

if i%2 > 0: # 非雙數時跳過輸出

continue

print i # 輸出雙數2、4、6、8、10

i = 1

while 1: # 迴圈條件為1必定成立

print i # 輸出1~10

i += 1

if i > 10: # 當i大於10時跳出迴圈

break

無限迴圈

如果條件判斷語句永遠為 true,迴圈將會無限的執行下去,如下例項:

#!/usr/bin/python

# -*- coding: utf-8 -*-

var = 1

while var == 1 : # 該條件永遠為true,迴圈將無限執行下去

num = raw_input("enter a number :")

print "you entered: ", num

print "good bye!"

以上例項輸出結果:

enter a number  :20

you entered: 20

enter a number :29

you entered: 29

enter a number :3

you entered: 3

enter a number between :traceback (most recent call last):

file "test.py", line 5, in num = raw_input("enter a number :")

keyboardinterrupt

注意:以上的無限迴圈你可以使用 ctrl+c 來中斷迴圈。

在 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

類似 if 語句的語法,如果你的 while 迴圈體中只有一條語句,你可以將該語句與while寫在同一行中, 如下所示:

#!/usr/bin/python

flag = 1

while (flag): print 'given flag is really true!'

print "good bye!"

注意:以上的無限迴圈你可以使用 ctrl+c 來中斷迴圈。

python2 全套基礎教程路線!

while 迴圈執行的次數 while 迴圈語句

在python中,還有一種語句可以讓 塊重複執行,那就是while語句。它的流程圖以及語法書寫格式如下。只要while語句的表示式的布林值為真,那麼迴圈就能一直執行下去,直到表示式的布林值為假。例如 a 100 while a 0 a 1 print a的值為 a 執行結果 a的值為0這裡的whil...

Python 迴圈(2)while迴圈

又雙叒叕是乙個列印數字的例子 x 1 while x 5 print x 在這裡x 1的作用是增加x值,避免無限迴圈 x 1在上述 中,我們定義了變數x,設定了while的條件為在x小於5時,執行迴圈內 將會輸出 12 34當x小於5條件不成立時,結束迴圈。在while迴圈中,一定要注意避免無限迴圈...

Python流程控制語句 while迴圈語句

說明 迴圈是在滿足條件下周而復始的執行的情況 while 關鍵字用於建立迴圈,在滿足條件時,將迴圈執行語句 1,while迴圈基本寫法 while 迴圈執行條件 被迴圈執行的 塊 修改迴圈的判斷條件 示例1 i 0 while i 5 如果i變數值小於5 才會執行下面迴圈語句 print 哈哈哈哈哈...