在Python中,`for`循環用于遍歷可迭代對象(如列表、字符串、元組等)中的元素,執行特定的代碼塊。以下是`for`循環的基本語法:
for item in iterable:
# 執行的代碼塊
其中,`item`是循環變量,用于迭代訪問可迭代對象中的每個元素。`iterable`是可迭代對象,可以是列表、字符串、元組等。
以下是一些常用的`for`循環用法示例:
1. **遍歷列表**:遍歷列表中的元素。
fruits = ['apple', 'banana', 'orange']
for fruit in fruits:
print(fruit)
# 輸出:
# apple
# banana
# orange
2. **遍歷字符串**:遍歷字符串中的每個字符。
name = 'John'
for char in name:
print(char)
# 輸出:
# J
# o
# h
# n
3. **遍歷數字范圍**:遍歷指定范圍內的數字。
for num in range(1, 5):
print(num)
# 輸出:
# 1
# 2
# 3
# 4
4. **結合`break`和`continue`**:使用`break`語句中斷循環或`continue`語句跳過當前迭代。
numbers = [1, 2, 3, 4, 5]
for num in numbers:
if num == 3:
break # 當 num 等于 3 時中斷循環
if num == 2:
continue # 當 num 等于 2 時跳過當前迭代,進入下一次迭代
print(num)
# 輸出:
# 1
以上是一些基本的`for`循環用法示例,`for`循環在實際應用中非常靈活,可以與條件語句、嵌套循環等結合使用,以滿足不同的需求。在編寫循環時,根據具體的邏輯需求,合理使用循環變量和循環控制語句,以實現預期的迭代行為。