Oct-17-2018, 09:17 PM
Probably a brainlet question, but I will ask anyway since I'm too lazy to actually read the documentation.
I've been trying to do this exercise: https://www.practicepython.org/exercise/...e-one.html
Basically : Generate a random number between 1 and 9 (including 1 and 9). Ask the user to guess the number, then tell them whether they guessed too low, too high, or exactly right.
Now this works proper, but I've decided to also add a counter that counts every guess the user takes and display it at the end...But I screwed up, and I have no idea why
, as this usually works in languages like C#.
The code:
!
I've been trying to do this exercise: https://www.practicepython.org/exercise/...e-one.html
Basically : Generate a random number between 1 and 9 (including 1 and 9). Ask the user to guess the number, then tell them whether they guessed too low, too high, or exactly right.
Now this works proper, but I've decided to also add a counter that counts every guess the user takes and display it at the end...But I screwed up, and I have no idea why

The code:
"""17.10.18 guessing game one generates a random number between 1 and 9 (including 1 and 9) then asks the user to guess a number to see how close it is to the solution """ #importing modules import random #declaring variables rnd = random.randint(1, 9) num = 0 count = 1 #user input while num != rnd: num = input("Guess a number between 1 & 9: ") if num != rnd and num < rnd: print("Too small, try again...") count++ elif num != rnd and num > rnd: print("Too large, try again...") count++ print("Good job! it took you " + count + " guesses to win.") quit()Any help is appreciated
