Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
guess the number
#1

Hi. i am trying to make the guess the number, but i am getting an error at the end were i have to replay the game. here is my code:
import random
n = random.randint(1, 100)
tries=0
guess=0
guess = int(input("Please enter a number from 1 to 100: "))
while n != "guess":
    tries += 1
    points=100-tries
    
    if guess < n:
        print ("\nNumber is bigger than the one you typed.")
        guess = int(input("Please try again, by typing a number from 1 to 100: "))
    elif guess > n:
        print ("\nNumber is smaller than the one you typed")
        guess = int(input("Please try again, by typing a number from 1 to 100: "))
    elif guess < 1 or guess > 100:
        print("Number out of range. Please enter a number within range of 1 to 100")
    else:
        print ("\nYou found it after", tries," and you won ",points," points")
        [b]while True:
            word = input('Would you like to play again? (YES/NO): ')
            if word == 'NO':                             
                break[/b]
    print
the part of the code with bold is the one that i have issues with. I would like the user to be able to continue playing the game by typing yes or end the game by typing no. Also i would like to limit the number of tries to 10. Could someone evaluate the above code and help me please?
Reply


Messages In This Thread
guess the number - by atux_null - Dec-05-2017, 02:09 PM
RE: guess the number - by Larz60+ - Dec-05-2017, 04:36 PM
RE: guess the number - by atux_null - Dec-05-2017, 05:30 PM
RE: guess the number - by jakegold98 - Dec-05-2017, 06:35 PM
RE: guess the number - by atux_null - Dec-05-2017, 07:22 PM
RE: guess the number - by jakegold98 - Dec-05-2017, 09:01 PM
RE: guess the number - by incineratez - Dec-06-2017, 03:47 AM
RE: guess the number - by atux_null - Dec-06-2017, 06:50 AM
RE: guess the number - by gruntfutuk - Dec-06-2017, 09:14 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Guess the number game jackthechampion 5 3,314 Mar-07-2020, 02:58 AM
Last Post: AKNL
  Asking for help in my code for a "Guess the number" game. Domz 5 4,002 Aug-14-2019, 12:35 PM
Last Post: perfringo
  Guess a number game Drone4four 4 5,471 Nov-16-2018, 03:56 AM
Last Post: Drone4four

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020