Introduction
Software Requirement
Python 3.5.2 or above
Simple programming
- print('Welcome To Tutor Joes...')
- print('Else If Statement :')
- value=input("Enter The Value :")
- if int(value)==5:
- print("Equal To 5..")
- elif int(value)>5:
- print("Greater Than 5..")
- else:
- print("lesser Than 5..")
Explanation
In this blog, I explained about the elif or 'elseif' condition. It will be executed and printed, as per the condition, being evaluated.
Output
Welcome To Tutor Joes...
Else If Statement :
Enter The Value:2
lesser Than 5..
>>>

SubashPosted Jul 22, 2016, 7:22 AM
Thanks for giving simple python tutorials..
kalu singh raoPosted Jul 22, 2016, 1:32 AM
Good one
Anu VPosted Jul 22, 2016, 1:12 AM
Nice