python 程式設計中 while 語句用於迴圈執行程式,即在某條件下,迴圈執行某段程式,以處理需要重複處理的相同任務。其基本形式為:
執行語句可以是單個語句或語句塊。判斷條件可以是任何表示式,任何非零、或非空(null)的值均為true。當判斷條件假false時,迴圈結束。
執行流程圖如下:
: print '朋友你猜對了'
else
: print false
#!
/usr/bin/python
count =
0while count <
100:
print 'the count is:'
, count
count = count +
1print "good bye!"
#!
/usr/bin/python
# -*
- coding:
utf-8-
*-var=
1while
var==
1: # 該條件永遠為true,迴圈將無限執行下去
num =
raw_input
("enter a number :"
) print "you entered: "
, num
print "good bye!"
輸出:
python 2.7
.15|anaconda, inc.|(
default
, dec 10
2018,21
:57:18
)[msc v.
1500
64bit
(amd64)]
,"credits" or "license"
for more information.
ipython 5.8
.0-- an enhanced interactive python.?-
> introduction and overview of ipython's features.
%quickref -
> quick reference.
help -
> python's own help system.
object?
-> details about 'object'
, use 'object??'
for extra details.
pydev console: using ipython 5.8
.0python 2.7
.15|anaconda, inc.|(
default
, dec 10
2018,21
:57:18
)[msc v.
1500
64bit
(amd64
)] on win32
runfile
('d:/pycharm/test02/python file/test02.py'
, wdir=
'd:/pycharm/test02/python file'
)enter a number :
>?3
you entered: 傻瓜 3
enter a number :
python while迴圈 for迴圈
1變數的初始化 while 條件2 條件滿足時候 執行該 條件滿足時候 執行該 3變數的更新 1 while 迴圈輸出1 100所有的數 while 迴圈輸出20次我愛你 迴圈輸出1 100累加和 1 100之間所有數的和 1變數的初始化 i 0 sum 0 儲存和 判斷條件 while i 100...
Python While 迴圈語句
python 程式設計中 while 語句用於迴圈執行程式,即在某條件下,迴圈執行某段程式,以處理需要重複處理的相同任務。其基本形式為 while 判斷條件 執行語句 執行語句可以是單個語句或語句塊。判斷條件可以是任何表示式,任何非零 或非空 null 的值均為true。當判斷條件假false時,迴...
Python While迴圈語句
python while 迴圈語句 python 程式設計中while 語句用於迴圈執行程式,即在某條件下,迴圈執行某段程式,以處理需要重複處理的相同任務。其基本形式為 while 判斷條件 執行語句 執行語句可以是單個語句或語句塊。判斷條件可以是任何表示式,任何非零 或非空 null 的值均為 t...