write a program to display "valid voter " , if the following condition is true : age of person should be >=18
Answers
Answered by
4
Answer:
age = int(input("Enter your Age:")
if age >= 18:
print ("Valid Voter")
else:
print ("Invalid Voter")
Similar questions
Math,
2 months ago
Computer Science,
2 months ago
English,
2 months ago
Math,
4 months ago
Math,
11 months ago