Check the voter eligibility by entering age in Python Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code age=int(input(“Enter your age : “))if age>18: print(“You are eligible for vote”)else: print(“You are eligible for vote”) Output Enter your age : 34You are eligible for vote View All Python Programs