代码示例:(标识:python_if_or)
python_if_or.py
a = 200
b = 66
c = 500
if a > b or a > c:
  print("At least one of the conditions is True")
运行结果: