011 Condition
011 Condition
USING ELSE
If all the conditions inside conditional statements are false then
the body of the else loop will be executed.
If (expression) :
Statement1
Elif(expression):
Statement2
Else:
Statement3
If , elif and else this way, together form the if-elif-else ladder.