python如何使用for循环
时间: 2023-11-07 08:53:19 浏览: 83
如何提高python 中for循环的效率
5星 · 资源好评率100%
Python中使用for循环可以实现多种功能,包括遍历数值、字符串、列表、元组和字典等数据类型。对于数值类型,可以使用range()函数结合for循环进行遍历。对于字符串,可以直接使用for循环来遍历字符串中的每个字符。而对于列表、元组和字典,可以使用for循环结合对应的方法(如keys()、values()、items())来遍历其中的元素或键值对。
以下是一些具体的例子:
1. 遍历数值:
```python
for i in range(5):
print(i)
```
输出:
```
0
1
2
3
4
```
2. 遍历字符串:
```python
for c in "Hello":
print(c)
```
输出:
```
H
e
l
l
o
```
3. 遍历列表:
```python
fruits = ["apple", "banana", "cherry"]
for fruit in fruits:
print(fruit)
```
输出:
```
apple
banana
cherry
```
4. 遍历元组:
```python
colors = ("red", "green", "blue")
for color in colors:
print(color)
```
输出:
```
red
green
blue
```
5. 遍历字典的键值对:
```python
person = {"name": "Alice", "age": 20, "gender": "female"}
for key, value in person.items():
print(key, value)
```
输出:
```
name Alice
age 20
gender female
```
阅读全文