python 循环语句
时间: 2023-10-12 22:20:45 浏览: 101
循序渐进学Python之循环语句.pdf
Python中有两种循环语句:`for`循环和`while`循环。
### `for`循环
`for`循环用于遍历任何序列的项目,例如一个列表或者一个字符串。语法如下:
```python
for 变量 in 序列:
# 执行代码块
```
示例:
```python
fruits = ["apple", "banana", "cherry"]
for fruit in fruits:
print(fruit)
```
输出:
```
apple
banana
cherry
```
### `while`循环
`while`循环用于在条件为真时重复执行一段代码块,直到条件为假。语法如下:
```python
while 条件:
# 执行代码块
```
示例:
```python
i = 1
while i < 5:
print(i)
i += 1
```
输出:
```
1
2
3
4
```
阅读全文