'Basic python coding
Trying to do a simple guessing game program in python, but I'm more comfortable in java. When the correct number is entered, it says it is too high and won't exit the while loop. Any suggestions?
import random
comp_num = random.randint(1,101)
print comp_num
players_guess = raw_input("Guess a number between 1 and 100: ")
while players_guess != comp_num:
if players_guess > comp_num:
print "Your guess is too high!"
elif players_guess < comp_num:
print "Your guess is too low!"
players_guess = raw_input("Guess another number between 1 and 100: ")
print "CONGRATULATIONS! YOU GUESSED CORRECTLY!"
Solution 1:[1]
I would guess it is because you are comparing string
and int
. Whatever is captured from raw_input
is captured as a string
and, in Python:
print "1" > 100 # Will print true
For it to work, convert:
players_guess = raw_input("Guess a number between 1 and 100: ")
to
players_guess = int(raw_input("Guess a number between 1 and 100: "))
Solution 2:[2]
You are comparing a string to an int. That's why you get odd results.
Try this:
players_guess = int(raw_input("Guess a number between 1 and 100: "))
Solution 3:[3]
import random
comp_num = random.randint(1,101)
print comp_num
players_guess = int(raw_input("Guess a number between 1 and 100: "))
while players_guess != comp_num:
if players_guess > comp_num:
print "Your guess is too high!"
elif players_guess < comp_num:
print "Your guess is too low!"
players_guess = int(raw_input("Guess another number between 1 and 100: "))
print "CONGRATULATIONS! YOU GUESSED CORRECTLY!"
you need to force the input to int
Solution 4:[4]
Try this code:
import random
comp_num = random.randint(1,101)
print comp_num
players_guess = int(raw_input("Guess a number between 1 and 100: "))
while players_guess != comp_num:
if players_guess > comp_num:
print "Your guess is too high!"
elif players_guess < comp_num:
print "Your guess is too low!"
players_guess = int(raw_input("Guess another number between 1 and 100: "))
print "CONGRATULATIONS! YOU GUESSED CORRECTLY!"
Solution 5:[5]
in your code change in print formation and use 'int' datatype in numerical argument. i will change the cond so try it once:
import random
comp_num = random.randint(1,101)
print ('comp_num')
players_guess = int(raw_input("Guess a number between 1 and 100: "))
while players_guess != comp_num:
if players_guess > comp_num:
print('Your guess is too high!')
elif players_guess < comp_num:
print('Your guess is too low!')
players_guess = int(raw_input("Guess another number between 1 and 100: "))
print('CONGRATULATIONS! YOU GUESSED CORRECTLY!')
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | ugo |
Solution 2 | khelwood |
Solution 3 | |
Solution 4 | Uddeshya Singh |
Solution 5 | Shubh Patel |