Python 常用术语
if语句不能为空,但是如果出于某种原因,有一个没有内容的if语句,使用pass语句以避免出现错误:
例如:
a = 33 b = 200 if b > a: pass
相关文档:
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