Python 用 for 循环遍历列表中的所有元素
在 Python 中,for
循环是一种常用的遍历列表元素的方式。通过 for
循环,我们可以依次访问列表中的每一个元素,并对其进行操作。
实例
# 定义一个列表
fruits = ["apple", "banana", "cherry"]
# 使用 for 循环遍历列表
for fruit in fruits:
print(fruit)
fruits = ["apple", "banana", "cherry"]
# 使用 for 循环遍历列表
for fruit in fruits:
print(fruit)
代码解析:
fruits = ["apple", "banana", "cherry"]
:定义一个包含三个元素的列表fruits
。for fruit in fruits:
:使用for
循环遍历列表fruits
,每次循环将列表中的一个元素赋值给变量fruit
。print(fruit)
:在每次循环中,打印当前fruit
的值。
输出结果:
apple banana cherry
点我分享笔记