elif

Elif
Elif 
lets 
you 
add 
more 
than 
one 
conditional 
statement 
to 
your 
if-else 
program.
In 
multiple 
elif 
conditions, 
Python 
checks 
for 
the 
next 
one 
if 
the 
previous 
ones 
are 
not 
True
.
if condition1:
     option1
elif condition2:
     option2
elif condition3:
     option3

.......
else:
     option
if age >= 10 and height > 150:
    print('You get roller coaster!')
elif age >= 10 and height <= 150:
    print('You get water rides!')
else:
    print('Sorry, no rides for you!')