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 trialAbdullah Jassim
4,551 PointsWhats wrong with while guesses <= chances:
import random
random_number = random.randint(1, 10)
guesses = []
chances = 10
def game ():
while guesses <= chances:
try:
guess = int(input("Can you guess the number between 1 and 10? "))
except ValueError:
print("{} is not a number".format(guess))
else:
if guess == random_number:
print("You got it, my number was {}".format(random_number))
break
else:
print("Thats not it. Guess again")
guesses.append(guess)
game ()
1 Answer
Steve Hunter
57,712 PointsHi,
Here, guesses
is an empty list and chances
is an integer. You can't directly compare those as they're not of the same type.
I think you want to compare the length of guesses
. Try:
while len(guesses) <= chances:
The len()
method returns an integer representing the length of the list. You can compare that to chances
.
Let me know how you get on.
Steve.
Abdullah Jassim
4,551 PointsAbdullah Jassim
4,551 Pointsthanks :)
Steve Hunter
57,712 PointsSteve Hunter
57,712 PointsNo problem!