Jika elif lagi

number = 9

if number < 5: # Condition 1
	print("Less than 5") # Code 1
elif number < 10: # Condition 2
	print("Less than 10") # Code 2
else: # If Condition 1 and 2 are not true
	print("Not less than 5 or 10") # Code 3
Ninja Penguin