Python 常用术语
or关键字是一个逻辑运算符,用于组合条件语句:
or
例如:
判断a是否大于b,或a是否大于c:
a = 220 b = 33 c = 510 if a > b or a > c: print("至少有一个条件是True")
相关文档:
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