I am trying to make a scorekeeper for a game of Yahtzee but whenever I put in a variable for players
it always prints "I think that's enough."
Please help me understand what is happening here and how I could fix it.
#Yahtzee Scorekeeper
if __name__ == "__main__":
players = raw_input("How many people will be playing?")
if players == 1:
print "You can't play Yahtzee by yourself!"
elif players == 2:
print "Ready to start with " + str(players) + " players!"
elif players == 3:
print "Ready to start with " + str(players) + " players!"
elif players == 4:
print "Ready to start with " + str(players) + " players!"
elif players == 5:
print "Ready to start with " + str(players) + " players!"
elif players == 6:
print "Ready to start with " + str(players) + " players!"
elif players == 7:
print "Ready to start with " + str(players) + " players!"
elif players == 8:
print "Ready to start with " + str(players) + " players!"
elif players > 8:
print "I think that's enough."