Computer Science, asked by suhail6071, 8 months ago

Write a python program to check the age and print a person is minor or major. *​

Answers

Answered by Anonymous
3

Answer:

# input age

age = int(input("Enter Age : "))

# condition to check voting eligibility

if age>=18:

      status="Eligible"

else:

  status="Not Eligible"

print("You are ",status," for Vote.")

THANKS ROCKSTARPRATHEEK FOR YOUR ANSWER

Similar questions