python遍历循环
时间: 2023-12-29 09:25:23 浏览: 93
对python For 循环的三种遍历方式解析
在Python中,遍历循环是一种常见的循环结构,用于迭代访问集合中的元素或执行一段代码多次。Python提供了多种遍历循环的方式,包括for循环和while循环。
1. for循环:for循环用于遍历可迭代对象(如列表、元组、字符串等)中的元素。语法如下:
```
for 变量 in 可迭代对象:
# 执行代码块
```
示例:
```python
fruits = ["apple", "banana", "cherry"]
for fruit in fruits:
print(fruit)
```
输出:
```
apple
banana
cherry
```
2. while循环:while循环用于在满足条件的情况下重复执行一段代码。语法如下:
```
while 条件:
# 执行代码块
```
示例:
```python
count = 0
while count < 5:
print(count)
count += 1
```
输出:
```
0
1
2
3
4
```
以上是Python中常用的遍历循环方式,你可以根据具体的需求选择合适的循环结构来进行遍历操作。
阅读全文