Introduction

In this blog, I will explain about the Elseif condition in Python. It will display in the Run module.
Software Requirement
Python 3.5.2 or above
Simple programming
  1. print('Welcome To Tutor Joes...')
  2. print('Else If Statement :')
  3. value=input("Enter The Value :")
  4. if int(value)==5:
  5. print("Equal To 5..")
  6. elif int(value)>5:
  7. print("Greater Than 5..")
  8. else:
  9. 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..
>>>