Python Forum
can't figure out problem with number guess
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
can't figure out problem with number guess
#1
import random 

randomNumber = random.randint(1, 5)

while True: 
  input_value = input("Please guess a number between 1 and 5: ")
  try:
    guess = int(input_value)
  except ValueError: 
    print("{guess} is not a number, please enter a number!".format(guess=input_value))
    continue 
  else:
    break

  if guess < 1:
    print("It has to be a number between 1 and 5.")
    continue
  else:
    break

  if guess > 5:
    print("It has to be a number between 1 and 5.")
    continue
  else:
    break

if guess == (1, 5):
  if guess == randomNumber:
    print("Congrats! {guess} was the correct number!".format(guess=input_value))
  else:
    print("Sorry, {guess} was not the correct number.".format(guess=input_value))
Seems to automatically skip over guess < 1 and guess > 5 after the first break?
Reply


Messages In This Thread
can't figure out problem with number guess - by Galoxys - Oct-29-2018, 02:40 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Guess the word game help jackthechampion 3 3,069 Sep-06-2023, 06:51 AM
Last Post: Pedroski55
  Problem with "Number List" problem on HackerRank Pnerd 5 2,156 Apr-12-2022, 12:25 AM
Last Post: Pnerd
  number accuracy problem? roym 5 1,882 Dec-24-2021, 07:57 AM
Last Post: roym
  Problem : Count the number of Duplicates NeedHelpPython 3 4,427 Dec-16-2021, 06:53 AM
Last Post: Gribouillis
  Ask again if wrong guess with While. EduPy 4 2,292 Oct-21-2021, 07:46 PM
Last Post: menator01
  I guess it's about print tsavoSG 2 2,147 Feb-08-2021, 08:34 PM
Last Post: steve_shambles
  P3, openpyxl, csv to xlsx, cell is not number, problem with colorize genderbee 1 2,190 Sep-29-2020, 03:20 PM
Last Post: Larz60+
  problem with complex number jodrickcolina 1 2,347 Apr-13-2019, 06:59 PM
Last Post: Yoriz
  Guess a number Ameen 5 13,189 Apr-03-2018, 01:20 PM
Last Post: snippsat
  Guess Random Number Why i m not able to enter input Nithya Thiyagarajan 6 8,268 Jan-07-2018, 04:26 AM
Last Post: squenson

Forum Jump:

User Panel Messages

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