在 Python 中,可以使用 `for` 循環(huán)語(yǔ)句來(lái)迭代遍歷可迭代對(duì)象(如列表、元組、字符串等)中的元素。`for` 循環(huán)的基本語(yǔ)法如下:
for item in iterable:
# 執(zhí)行語(yǔ)句塊
其中,`item` 是一個(gè)臨時(shí)變量,用于迭代遍歷 `iterable` 中的每個(gè)元素。在每次迭代中,執(zhí)行位于 `for` 循環(huán)內(nèi)部的語(yǔ)句塊。
下面是一些 `for` 循環(huán)的示例:
1. 遍歷列表:
fruits = ['apple', 'banana', 'cherry']
for fruit in fruits:
print(fruit)
# 輸出:
# apple
# banana
# cherry
2. 遍歷字符串:
message = "Hello, World!"
for char in message:
print(char)
# 輸出:
# H
# e
# l
# l
# o
# ,
#
# W
# o
# r
# l
# d
# !
3. 遍歷字典的鍵或值:
person = {'name': 'Alice', 'age': 25, 'city': 'New York'}
for key in person:
print(key)
# 輸出:
# name
# age
# city
for value in person.values():
print(value)
# 輸出:
# Alice
# 25
# New York
4. 使用 `range()` 函數(shù)生成數(shù)字序列:
for i in range(5):
print(i)
# 輸出:
# 0
# 1
# 2
# 3
# 4
在 `for` 循環(huán)中,還可以使用 `break` 關(guān)鍵字跳出循環(huán),以及 `continue` 關(guān)鍵字跳過(guò)當(dāng)前迭代,進(jìn)入下一次迭代。
注意,在 Python 中的 `for` 循環(huán)更多地被用于遍歷可迭代對(duì)象,而不是根據(jù)索引進(jìn)行迭代。如果需要根據(jù)索引進(jìn)行循環(huán),可以使用 `range()` 函數(shù)生成索引序列,并通過(guò)索引訪問(wèn)元素。