Let's look at a new scenario. In the following code snippet, you will create a conditional statement that will check your age and let you know how you can participate in elections depending on that factor:
>>> age = 10
>>> if age < 18:
... print('You can follow the elections on the news')
... elif age < 35:
... print('You can vote in all elections')
... elif age >= 35:
... print('You can stand for any election')