Result Size: 625 x 571
demo_if_or.py:
x
 
a = 200
b = 33
c = 500
if a > b or a > c:
  print("At least one of the conditions is True")
C:\Users\My Name>python demo_if_or.py
At least one of the conditions is True