Python的循環語法包括兩種:for循環和while循環。
for循環用於對一個給定的序列(如列表、字串、範圍等)進行迭代。
語法如下:
for element in sequence:
# 執行程式碼
示例:
fruits = ["apple", "banana", "cherry"]
for fruit in fruits:
print(fruit)
輸出:
apple
banana
cherry
while循環是根據一個給定的條件來重複執行程式碼,直到條件不再滿足。
語法如下:
while condition:
# 執行程式碼
示例:
count = 0
while count < 5:
print(count)
count += 1
輸出:
0
1
2
3
4
無論是for循環還是while循環,在適當的情況下,都可以使用break和continue語句來中斷或跳過循環的執行。