python for循环语句
时间: 2023-10-20 07:18:33 浏览: 135
Python中的for循环语句可以用来遍历序列(如列表、元组或字符串)中的每一个元素,也可以用来遍历任何可迭代对象(如字典、文件对象等)。for循环的语法格式如下:
```python
for 变量 in 序列:
执行语句1
else:
执行语句2
```
其中,else语句是可选的,用于在循环结束后执行一些操作。
示例代码:
```python
# 遍历列表
fruits = ["apple", "banana", "cherry"]
for fruit in fruits:
print(fruit)
# 遍历字符串
for char in "hello":
print(char)
# 遍历字典
person = {"name": "Alice", "age": 18, "gender": "female"}
for key, value in person.items():
print(key, value)
```
输出结果:
```
apple
banana
cherry
h
e
l
l
o
name Alice
age 18
gender female
```
阅读全文