write a program to check whether the entered age of person >20= if age is >=20 then display message you one aligable to vote
Answers
Answered by
1
Answer:
age = int(input("Enter your age:"))
if(age >= 20):
print("You are eligible to vote")
else:
print("You are not eligible to vote")
Explanation:
Answered by
0
thanks sis plz mark me as brainlist so that I can get my new rank
Similar questions