Making the voting eligibility checker
SO IN THIS BLOG WE ARE GOING TO MAKE A PROGRAM OF VOTING ELIGIBILTY CHECKER JUST LIKE OUR PREVIOUS DRIVING ELIGIBILITY CHECKER BY THE HELP OF IF-ELSE CONTROL STATEMENT.
# Voting eligibility checker
print("Enter your age")
age = int(input())
if age>=18:
print("You are eligible for voting")
else:
print("You are not eligible...!")
Comments
Post a Comment