python中的循环语句
时间: 2023-09-08 08:10:58 浏览: 165
Python中的循环语句有两种,分别为for循环和while循环。
1. for循环
for循环用于遍历序列 (列表、元组、字符串) 或其他可迭代对象。语法如下:
```
for 变量 in 序列:
循环体语句
```
示例代码:
```python
fruits = ['apple', 'banana', 'orange']
for fruit in fruits:
print(fruit)
```
输出结果:
```
apple
banana
orange
```
2. while循环
while循环用于执行一段代码直到条件不成立为止。语法如下:
```
while 条件:
循环体语句
```
示例代码:
```python
count = 0
while count < 5:
print(count)
count += 1
```
输出结果:
```
0
1
2
3
4
```
注意:在使用while循环时,要特别注意循环条件的判断,避免出现死循环。
阅读全文