Write a python program to check the age and print a person is minor or major. *
Answers
Answered by
3
Answer:
# input age
age = int(input("Enter Age : "))
# condition to check voting eligibility
if age>=18:
status="Eligible"
else:
status="Not Eligible"
print("You are ",status," for Vote.")
THANKS ROCKSTARPRATHEEK FOR YOUR ANSWER
Similar questions