Python 分支结构
时间: 2023-12-14 18:33:37 浏览: 120
Python中的分支结构主要有单分支结构和多分支结构两种形式。其中单分支结构使用if语句,多分支结构使用if-elif-else语句。此外,还有三元表达式可以用来简化单分支结构的代码。
以下是Python分支结构的示例代码:
1. 单分支结构:
```python
x = 10
if x > 0:
print("x is positive")
```
2. 多分支结构:
```python
x = 0
if x > 0:
print("x is positive")
elif x == 0:
print("x is zero")
else:
print("x is negative")
```
3. 三元表达式:
```python
x = 10
result = "x is positive" if x > 0 else "x is non-positive"
print(result)
```
阅读全文