if True or False: print("Yes") else: print("No")
if not True: print("A") elif not (1 + 1 == 3): print("B") else: print("C")
You can still revise this topic