python的控制流程举例
时间: 2024-09-14 18:13:53 浏览: 44
Python简单基础小程序的实例代码
Python的控制流程主要包括三种结构:顺序执行、条件分支和循环。下面是一些具体的例子:
1. **顺序执行**:这是最基本的执行模式,按照代码行的顺序逐行执行。例如:
```python
a = 5
b = 10
print(a) # 先打印a的值
print(b) # 然后打印b的值
```
2. **条件分支**:使用`if`、`elif`和`else`来基于某个条件改变程序的路径。比如判断年龄是否成年:
```python
age = 18
if age >= 18:
print("成年人")
else:
print("未成年人")
```
3. **循环**:
- `for` 循环遍历序列(如列表、字符串等):
```python
fruits = ["apple", "banana", "cherry"]
for fruit in fruits:
print(fruit)
```
- `while` 循环,在满足特定条件时持续执行:
```python
i = 0
while i < 5:
print(i)
i += 1
```
阅读全文