**EDIT:***This has been solved!*
Im programming a program that will tell you if you are old enough to vote. And, when it asks you for your age, I want it to say a certain thing if the user types letters instead of a number, something like "Please enter a number, not a letter. Restart." Here is the code I have right now:
name = raw_input("What is your name?: ")
print("")
print("Hello, "+name+".\n")
print("Today we will tell you if you are old enough to vote.")
age = input("How old are you?: ")
if age >= 18:
print("You are old enough to vote, "+name+".")
elif age < 18:
print("Sorry, but you are not old enough to vote, "+name+".")