153k views
23 votes
Write programs in python to display “Valid Voter”. (condition : age of person should be

>=18).​

User Ltk
by
3.4k points

1 Answer

9 votes

Answer:

X = int(input("Age = ")

if (X >= 18):

print('Valid Voter')

Else:

return 0

Try it and let me know. :)

User ZekeDroid
by
3.0k points