Python 常用术语
如果语句内部可以有if语句,这被称为嵌套if语句:
例如:
x = 41 if x > 10: print("大于10") if x > 20: print("并且也大于20") else: print("不大于20")
相关文档:
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