This is the beauty of the if-elif-else statement. We can have as many elifs as we require, as long as they come between if and else.
svg viewer
Note: An if-elif statement can exist on its own without an else block at the end. However, an elif cannot exist without an if statement preceding it (which naturally makes sense).
Let’s write a piece of code that checks whether the value of an integer is in the range of 0-9 and prints the word in English: