Write a Python program to check whether a person is eligible for voting or not using
if-else control?
Answers
Answered by
5
it is correct answer for your Q hope is helpful and please give me thanks and happy Holi
Attachments:
Answered by
1
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