cshw/py/basicifstatements/challenge1.py

10 lines
No EOL
275 B
Python

# Question: Ask the user for their age. If they are 18 or older tell them “You can vote”.
# Ask the user for their age
age = int(input("Enter your age: "))
# Check if the user is 18 or older
if age >= 18:
print("You can vote")
else:
print("You cannot vote yet")