Python Program to check the age of a user is eligible for voting or not
In this program, You will learn how to check the age of a user who is eligible for voting or not in Python.
if age >= 18:
true
else:
false
Example: How to check the age of a user is eligible for voting or not in Python.
x = int(input("Enter age of a user:"))
if x >= 18:
print("User is valid for voting:", x)
else:
print("User is not valid for voting:", x)
Output:
Enter age of a user:45
User is valid for voting: 45