Computer Science, asked by akankshasood924, 19 days ago

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 samarthkrv
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 navjotsingh08410
0

thanks sis plz mark me as brainlist so that I can get my new rank

Similar questions