python写个循环
时间: 2024-04-04 18:28:13 浏览: 73
python for循环
当使用Python编写循环时,可以使用多种方式,其中最常用的是for循环和while循环。
1. for循环:
for循环用于遍历一个可迭代对象(如列表、元组、字符串等)中的元素。语法如下:
```
for 变量 in 可迭代对象:
循环体
```
示例:
```
fruits = ["apple", "banana", "cherry"]
for fruit in fruits:
print(fruit)
```
输出:
```
apple
banana
cherry
```
2. while循环:
while循环用于在满足条件的情况下重复执行一段代码块。语法如下:
```
while 条件:
循环体
```
示例:
```
count = 0
while count < 5:
print(count)
count += 1
```
输出:
```
0
1
2
3
4
```
阅读全文