python中for循环的多种用法
时间: 2024-03-30 13:32:53 浏览: 76
python中for in的用法详解
5星 · 资源好评率100%
在Python中,for循环有多种用法,以下是其中几种常见的用法:
1. 遍历列表或其他可迭代对象:
可以使用for循环遍历列表、元组、字符串等可迭代对象的每个元素。例如:
```
fruits = ['apple', 'banana', 'orange']
for fruit in fruits:
print(fruit)
```
输出:
```
apple
banana
orange
```
2. 遍历字典的键或值:
可以使用for循环遍历字典的键或值。例如:
```
student_scores = {'Tom': 80, 'Alice': 90, 'Bob': 75}
for name in student_scores:
print(name)
```
输出:
```
Tom
Alice
Bob
```
若要遍历字典的值,可以使用`values()`方法:
```
for score in student_scores.values():
print(score)
```
输出:
```
80
90
75
```
3. 遍历字典的键值对:
可以使用for循环遍历字典的键值对。例如:
```
for name, score in student_scores.items():
print(name, score)
```
输出:
```
Tom 80
Alice 90
Bob 75
```
4. 使用range()函数进行循环计数:
可以使用range()函数生成一个指定范围的整数序列,然后使用for循环进行遍历。例如:
```
for i in range(1, 5):
print(i)
```
输出:
```
1
2
3
4
```
阅读全文