write a program to accept age and check whether a person is eligible to vote or not .
Answers
Answered by
16
Answer:
#Program in Python language.
age=int(input('enter your age:-'))
if age>=18 :
print('Your eligible for vote')
else :
print('your not eligible for vote')
Similar questions