letter = input("Name one of the most common letters in wheel of fortune puzzles: ")
if letter == "r":
print(letter, "is one of the most common letters!")
if letter == "s":
print(letter, "is one of the most common letters!")
if letter == "t":
print(letter, "is one of the most common letters!")
if letter == "l":
print(letter, "is one of the most common letters!")
if letter == "n":
print(letter, "is one of the most common letters!")
if letter == "e":
print(letter, "is one of the most common letters!")
else:
print("Incorrect!")
letter = input("Name one of the most common letters in wheel of fortune puzzles: ")
input("\n\nPress the enter key to exit:")
This will work as I think you want.
letter = raw_input("Name one of the most common letters in wheel of fortune puzzles: ")
if letter == "r":
print(letter, "is one of the most common letters!")
elif letter == "s":
print(letter, "is one of the most common letters!")
elif letter == "t":
print(letter, "is one of the most common letters!")
elif letter == "l":
print(letter, "is one of the most common letters!")
elif letter == "n":
print(letter, "is one of the most common letters!")
elif letter == "e":
print(letter, "is one of the most common letters!")
else:
print("Incorrect!")
raw_input("\n\nPress the enter key to exit:")
source
share