阅读量:1
在Python中,可以使用for
循环来迭代遍历一个可迭代对象(如列表、元组、字符串等)中的元素。for
循环的基本语法如下:
for 变量 in 可迭代对象: # 执行的代码块
其中,变量
是一个临时变量,用于存储每次迭代中的元素值。可迭代对象
是一个包含多个元素的对象。
下面是一些常见的使用for
循环的例子:
- 遍历列表中的元素:
fruits = ['apple', 'banana', 'orange'] for fruit in fruits: print(fruit)
输出:
apple banana orange
- 遍历字符串中的字符:
for char in 'Hello': print(char)
输出:
H e l l o
- 使用
range()
函数生成一系列数字,并遍历:
for num in range(1, 5): print(num)
输出:
1 2 3 4
- 使用
enumerate()
函数同时获取列表的索引和元素:
fruits = ['apple', 'banana', 'orange'] for index, fruit in enumerate(fruits): print(index, fruit)
输出:
0 apple 1 banana 2 orange
以上是for
循环的基本用法,你可以根据具体的需求在循环体中执行不同的操作。