People = 30
Cars = 40
Trucks = 14
# line 1,2,3 assign the value to variables
If cars > people: Using if statement
Print(“we should take the cars.”)
Elif cars < people: if 1st is false execute elif
print(“we should not take the car.”)
else : # if both are false then execute else:
print(“we can’t decide.”)