if True: print("True") if 1 < 1: print("1 < 1") elif 1 <= 1 print("1 <= 1") else: print("else 1")
Last updated 11 months ago