Python/gloss python if or
来自菜鸟教程
<languages />
Python如果或
Or
The
or
关键字是逻辑运算符,用于组合条件语句:
例
测试是否
a
大于
b
, 或者如果
a
大于
c
a = 200 b = 33 c = 500 if a > b or a > c: print("At least one of the conditions is True")