Write a small basic program for the following question.
Write a program that accepts the age of a person and check whether the person is eligible for voting.
Answers
Answered by
6
Answer:
1 age = int(input("Enter age : ")) 2 3 if age >= 18: 4 print("Eligible for Voting! ") 5 else: 6 print("Not Eligible for Voting! ")
Explanation:
I hope this is helpful for you.
please dear mark me as brainliest
Similar questions