A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Vote eligibility checking system in python
Q:

Vote eligibility checking system in python

0

Vote eligibility checking system in python

This project is for absolute beginners who just read if-else statements recently.This project has vanilla python so no modules are being used.It's just 7 lines of code.Keep Reading!

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Solution:

 #Asking the user to enter his/her age.
age = int(input("What is your age?"))

# Printing message of the condition when the age is less than 18 and the user is not allowed to vote.
if age < 18:
    print("Sorry you are not eligible to vote.") 

# Printing message of the condition when the age is less than 18 and the user is allowed to vote.
if age >= 18:
    print("You are eligible to vote.") 

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now