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")