Nesting

NESTING
Nesting 
is 
the 
process 
of 
adding 
an 
if-else 
statement 
within 
another 
if-else. 
The 
second 
statement 
gets 
evaluated 
when 
the 
first 
condition 
is 
True.
 
The 
first 
if 
statement 
is 
commonly 
called 
as 
"outer 
if"
 
and 
the 
block 
within 
it 
is 
called 
"nested 
/ 
inner 
if"
.
if condition1:
   if condition2:
        StatementA
   else:
        StatementB
else:
   if condition3:
        StatementC
   else:
        StatementD
age=10
height=160
if age >= 10:
    if height > 150:
        print('You get roller coaster!')
    else:
        print('You get water rides!')
else:
    print('Sorry, no rides for you!')