Computer Science, asked by victorraj478, 2 months ago

Write a program to print whether the person is eligible to vote or not. *​

Answers

Answered by BetteRthenUhh
2

Answer:

Program: # 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.

Similar questions