python控制循环语句介绍
时间: 2023-07-19 21:04:00 浏览: 94
Python中有两种主要的循环语句,分别是for循环和while循环。
1. for循环
for循环用于遍历序列(如列表、元组或字符串)中的每个元素,并执行相应的代码块。其语法如下:
```
for 变量 in 序列:
执行代码块
```
其中,变量是每次循环中取出的序列中的元素,序列可以是列表、元组、字符串等。
示例:
```
fruits = ['apple', 'banana', 'orange']
for fruit in fruits:
print(fruit)
```
输出:
```
apple
banana
orange
```
2. while循环
while循环用于执行一系列语句,只要条件为真,就会一直执行下去。其语法如下:
```
while 条件:
执行代码块
```
其中,条件可以是任何表达式,值为True或False。只要条件为True,就会一直循环执行代码块。
示例:
```
i = 1
while i <= 5:
print(i)
i += 1
```
输出:
```
1
2
3
4
5
```
阅读全文