Python for循环例子Python中的for循环是一种非常常用的循环结构,它可以遍历任何可迭代对象,包括列表、元组和字符串。下面我们将给出一些常见的for循环例子,以展示如何遍历这些数据结构。
- 遍历列表 列表是Python中最常用的数据结构之一,可以使用for循环来遍历列表中的每个元素。例如:
fruits = ['apple', 'banana', 'orange', 'grape']
for fruit in fruits:
print(fruit)
输出结果为:
apple
banana
orange
grape
- 遍历元组 元组是Python中另一个常用的数据结构,类似于列表,但是元组是不可变的。我们可以使用for循环来遍历元组中的每个元素。例如:
numbers = (1, 2, 3, 4, 5)
for number in numbers:
print(number)
输出结果为:
1
2
3
4
5
- 遍历字符串 字符串也是可迭代对象,可以使用for循环来遍历字符串中的每个字符。例如:
word = "Hello, World!"
for char in word:
print(char)
输出结果为:
H
e
l
l
o
,
W
o
r
l
d
!
暂无评论