在 Python 中,可以使用 `for` 循环语句来迭代遍历可迭代对象(如列表、元组、字符串等)中的元素。`for` 循环的基本语法如下:
for item in iterable:
# 执行语句块
其中,`item` 是一个临时变量,用于迭代遍历 `iterable` 中的每个元素。在每次迭代中,执行位于 `for` 循环内部的语句块。
下面是一些 `for` 循环的示例:
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()` 函数生成数字序列:
for i in range(5):
print(i)
# 输出:
# 0
# 1
# 2
# 3
# 4
在 `for` 循环中,还可以使用 `break` 关键字跳出循环,以及 `continue` 关键字跳过当前迭代,进入下一次迭代。
注意,在 Python 中的 `for` 循环更多地被用于遍历可迭代对象,而不是根据索引进行迭代。如果需要根据索引进行循环,可以使用 `range()` 函数生成索引序列,并通过索引访问元素。