Python Program to check whether a Person is Eligible to Vote or Not || Conditional Statement || Python

In this we are going to see a program to check whether the Person is Eligible for Voting or Not in Python Programming Language.


age = int(input("Enter Your Age : "))
if age >= 18:
    print("You Are Eligible For Voting")
else:
    print("You Are Not Eligible For Voting")

# Coded By DHIRAJ SHELKE


#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post