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!')