Result Size: 625 x 571
demo_ref_keyword_or2.py:
x
 
if 5 > 3 or 5 > 10:
  print("At least one of the statements are True")
else:
  print("None of the statements are True")
C:\Users\My Name>python demo_keyword_or2.py
At least one of the statements are True