python循环入门
时间: 2024-03-05 12:46:16 浏览: 63
python入门
Python中的循环是一种重要的控制结构它允许我们重复执行一段代码。Python提供了两种主要的循环结构:for循环和while循环。
1.循环:
for循环用于遍一个可迭代对象(如列表、元组、字符串等)中的元素,并执行相应的代码块for循环的语法如下:
```python
for 变量 in 可迭代对象:
# 执行的代码块
```
示例:
```python
fruits = ["apple", "banana", "cherry"]
for fruit in fruits:
print(fruit)
```
输出:
```
apple
banana
cherry
```
2. while循环:
while循环用于在满足条件的情况下重复执行一段代码块。while循环的语法如下:
```python
while 条件:
# 执行的代码块
```
示例:
```python
count = 0
while count < 5:
print(count)
count += 1
```
输出:
```
0
1
2
3
4
```
阅读全文