python迴圈結構

2021-09-24 23:08:49 字數 922 閱讀 7889

python 中沒有 do…while 迴圈

while … else 在條件語句為 false 時執行 else 的語句塊:

list=[

1,2,

3,4,

5]i =0

while i <

len(

list):

print

(list

[i])

i +=

1

123

45

# while可以使用else語句

list=[

1,2,

3,4,

5]i =0

while i <

len(

list):

print

(list

[i])

i +=

1else

:print

('**** 程式執行結束 *****'

)

123

45**** 程式執行結束 *****

for迴圈可以遍歷任何序列的專案,如乙個列表或者乙個字串。

一般結構如下

forin:

else

:

# 遍歷數字, 可以使用range方法

for i in

range(6

):print

(i)# 第二個引數不可達,第三個引數為步長不指定時,預設為1

for i in

range(2

,6,2

):print

(i)

012

3452

4

python使用迴圈結構 python迴圈結構

python迴圈結構 1.1 使用while python 中沒有 do while 迴圈 while else 在條件語句為 false 時執行 else 的語句塊 list iwhile ilen list print listii while可以使用else語句 list iwhile ile...

Python迴圈結構

1 遍歷迴圈 1 for 迴圈變數 in 遍歷結構 語句塊 從遍歷結構中逐一提取元素,放在迴圈變數中 由保留字for和in組成,完整遍歷所有元素後結束 每次迴圈,所獲得元素放入迴圈變數,並執行一次語句塊 2 計數迴圈 n次 for i in range n 語句塊 遍歷由range 函式產生的數字序...

python迴圈結構

while 條件表示式 迴圈體 while 條件表示式 迴圈體else 語句 count int input while count 5 print cout,is less than 5 count count 1 else print count,is not less than 5 使用較廣泛...