.1. Write a program in Python Input age of the person, if age>=18 then show the message “Valid voter” else show the message “Invalid voter”.
Answers
Answered by
2
Answer:
age = int(input ("Enter your Age"))
if age >= 18:
print ("Valid Voter")
else:
print ("Invalid Voter")
Similar questions