If
x = 10 if x < 20: print("x is smaller than 20") elif x < 25: #optional, elif-clause not necessary print("x is smaller than 25") else: #optional, else-clause not necessary print("x is 25 or higher")
Run