python if elif else用法
时间: 2023-05-01 14:00:54 浏览: 167
Python代码-if_elif_else格式.py
Python中的if-elif-else语句用于分支程序控制。
语法:
```
if 条件1:
执行语句1
elif 条件2:
执行语句2
else:
执行语句3
```
if语句的条件如果为真,则执行if语句中的所有语句,如果为假,则执行elif语句中的条件。如果elif语句的条件也为假,则执行else语句中的所有语句。
例如:
```
x = 10
y = 20
if x < y:
print("x is less than y")
elif x > y:
print("x is greater than y")
else:
print("x is equal to y")
```
输出: x is less than y
阅读全文