Computer Science, asked by vinayakindeevap2wr5a, 3 months ago

Write a Python program to check whether a person is eligible for voting or not using

if-else control?​

Answers

Answered by rani7913
5

it is correct answer for your Q hope is helpful and please give me thanks and happy Holi

Attachments:
Answered by hatishbnk12
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