How To Check Eligibility For Voting

 #TO CHECK WHETHER ELIGIBLE FOR VOTING OR NOT



print=('ELIGIBILITY FOR VOTING')
name=input('Enter Your Name :- ')
age=int(input('Enter Age :- '))
if(age<18):
    print(name,',you are not eligible for voting until you are 18 yrs old.')
else:
    print(name, ',you are eligible for voting.')
    
Made By :-
         Nilay Saraf
     

Comments

Popular Posts