python中for in 函数的用法
时间: 2023-09-16 09:07:56 浏览: 190
for in 函数是循环语句中的一种,通常用于遍历一个可迭代对象中的元素。
语法格式:
```
for 变量 in 可迭代对象:
循环体代码块
```
其中,变量代表可迭代对象中的每一个元素,可迭代对象可以是列表、元组、字符串、字典等。
示例:
```
# 遍历列表
fruits = ['apple', 'banana', 'orange']
for fruit in fruits:
print(fruit)
# 遍历字符串
string = 'Hello, World!'
for char in string:
print(char)
# 遍历字典
scores = {'math': 90, 'english': 85, 'science': 95}
for key in scores:
print(key, scores[key])
```
输出:
```
apple
banana
orange
H
e
l
l
o
,
W
o
r
l
d
math 90
english 85
science 95
```
阅读全文