Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialErik Jensen
Courses Plus Student 1,233 PointsWhy does this program not run? I type python number_game.py and the console does not do anything?
import random
def game():
secret_num= random.randint(1,10)
guesses=[]
while len(guesses) < 5 :
try:
guess=int(input("Guess a number between 1 and 10: "))
except ValueError:
print("{} isn't a number!".format(guess))
else:
if guess == secret_num:
print("you win jackwagon my number was {}".format(secret_num))
break
elif guess < secret_num:
print("Sorry my number was higher then {}.".format(guess))
else:
print("Sorry my number was lower then {}.".format(guess))
guesses.append(guess)
else:
print("you didnt get it my number was {}".format(secret_num))
play_again=input("Do you want to play again Y/n?.")
if play_again.lower() != 'n':
game()
else:
print("Bye you quitter")
1 Answer
Reyam Marcos
Courses Plus Student 10,367 Pointsyou dont have import random at the top of your code to generate random numbers, and function game() is not also not define, hope it helps
Christian Mangeng
15,970 PointsChristian Mangeng
15,970 PointsHi,
If your issue has not already been solved yet: I guess that this is the case because, although you defined a game() function, you didn't actutally call this function at the end of your code. Right now Python would read your function definition, but there is nothing that it could execute.