Python if条件语句是通过一条或多条语句的执行结果(True 或者 False)来决定执行的代码块。本文主要介绍Python if条件语句中elif。

Python 常用术语

1、if条件语句中的elif

elif关键字是在if条件不满足的情况,则执行elif代码。

例如:

a = 33
b = 33
if b > a:
    print("b 大于 a")
elif a == b:
    print("a 和 b 相等")

在此示例中,a等于b,因此第一个条件不成立,但elif条件成立,因此我们在屏幕上打印"a 和 b 相等"。

相关文档:

Python 条件语句(If else)教程

Python If条件语句

Python If语句缩进

Python if条件语句中elif

Python if条件语句中else

Python 简写 If 语句

Python 简写 If else 语句

Python if条件中的and

Python if条件中的or

Python If条件嵌套

Python if条件语句中使用pass

Python 常用术语

推荐文档