Introduction
Elif in python: In this post, you will learn what is elif statement, how does it work and what is the use of elif statement and also we will see some examples. Below is the video format of the post, check it out ????????
Video:
What is Elif in python ❓
The Elif exact definition is “The elif statement is python way of saying “if the previous conditions were not true, then try this condition“.
In simple words we can say elif is an option in python, You can add multiple elif statements. So, if the first answer is wrong then goes with the second and so on…
How does the Elif statement works ????
The elif statement works only after entering the if statement and the elif statement always will be followed by the if statement.
If you enter the elif after else statement then, the command becomes useless. Because firstly the else will be printed and then goes with elif and most probably you will be having an error.
Remember the elif get executed only the if statement is correct.
Examples of Elif in python examples ????????
Just follow the examples and try out with your local IDE or any online compilers.
Example1:
Here is the first example of elif statement
Just run this program and see what result you get.
Example2:
Adding Multiple elif statements ????????????
Also Read: If else in python full tutorial