python里面for循环的用法
时间: 2023-11-07 15:01:03 浏览: 84
在Python中,for循环用于迭代序列、列表、字典等数据类型中的元素。for循环的语法格式为:
```python
for 变量名 in 序列:
循环体代码
```
其中,变量名是一个新变量,用于存储每个元素的值,序列是需要遍历的数据类型,循环体代码是需要执行的代码块。
示例代码:
```python
# 遍历列表
fruits = ['apple', 'banana', 'cherry']
for fruit in fruits:
print(fruit)
# 遍历字典
person = {'name': 'Tom', 'age': 20, 'sex': 'male'}
for key, value in person.items():
print(key, value)
# 遍历range对象
for i in range(1, 6):
print(i)
```
输出结果:
```
apple
banana
cherry
name Tom
age 20
sex male
1
2
3
4
5
```
阅读全文