guessing game in python

Solutions on MaxInterview for guessing game in python by the best coders in the world

showing results for - "guessing game in python"
Fabian
20 Feb 2017
1# updated version
2import random
3# for instructions so that the user understands
4def instructions():
5    print("Welcome to the guessing game you will have 3 tries to pick a number 1-10")
6    print("Good luck btw it's all random")
7
8
9instructions()
10# guess limit so the user can't guess too much.
11guess_limit = 1
12# The random guess
13number = random.randint(1, 10)
14# What users can type and see.
15user = int(input("What is the number?: "))
16# The while loop so it can go on.
17while user != number:
18
19    if user > number:
20        print("Lower")
21
22    elif user < number:
23        print("Higher")
24
25    user = int(input("What is the number?: "))
26    guess_limit += 1
27    if guess_limit == 3:
28        print("------------------------------------------------------")
29        print("You ran out of guess ;( the answer was", number, "<--")
30        print("------------------------------------------------------")
31        break
32else:
33    print("You guessed it right! The number is", number,
34          "and it only took you ", guess_limit, "tries")
Sofia
03 Jun 2018
1# importing random library
2# this game untill work untill u get  right answer
3import random
4a = 1
5rand = random.randint(1, 100)
6while 1 <= a:
7    a += 1
8    winin = int(input("enter a number under 100 : "))
9    if winin > 100:
10        print("not valid")
11        break
12    else:
13        if winin < rand:
14            print("too low")
15        elif winin > rand:
16            print("too high")
17        if winin == rand:
18            print(f"you got the right answer in {a - 1} times")
19            break 
20
queries leading to this page
guessing the number game in pythonhow to code a number guessing game in pythonpython code for number guessing gamebuild a number guessing game using pythonhow to make code in python for guessing gamehow to make guessing game in pythonguessing user number input pythonpython number guessing game for beginnersrandom number game pythoncomputer generates 4 numbers 2c user guesses numbers 2c in pythonguessing game python exampleguess a number in pythonhow to make a number guesser game in pythonhow to make a python guessing gamegenerate a random number between 1 and 25 28including 1 and 25 29 ask the user to guess the number 2c and then tell them whether they guessed too low 2c too high 2c or exactly right the program should execute until user find exactly right number guess random number pythonpython guessing gamesimple python guessing game codepython number guessing game codepython number guessing gamenumber guessing pythonnumber guessing game code pythonguess the number pythonguessing game code pythonhow to make a guessing game in pythoneasy guessing game in pythonpython simple quessing gamerandom guess game pythonnumber guessing game python codeguess an integer number in a range in python algorithmguessing game with random pythonguessing game with pythonguessing number game pythoncreate a number guessing game using pythonnumber game in pythonguessing game python codehow to make a number guessing game in pythoncreate a number guessing game in pythonpython program to guess a number use of guessing the number game in pythonpython number guessingstarting out with python random number guessing gamepython for beginners guessing gamehow to do a guessing game on pythonpython simple guessing gamehow to make a guessing game in python 3guessing game in pythonpython number guessing game sourcehow to make a random number guessing game in pythonnumber guessing in pythonhow to make a time guessing in pythonpython guess random numbernumber guessing game pythonguessing game pythonpython guess game python random number gamenumber guessing using pythonsimple number guess game pythonhow to make a random number guesser in pythonnumber geussing project pythonpython how to make a number guessing gamenumber guessing game python algorithmguess game pythonunderstanding a guessing game in pythonpython number guessing game scriptpython guessing number gamenumber guessing python gameguess the number python codepython guesing gameguess the number game pythonhow to make number guessing game in pythonguessing games in pythonnumber guessing game in pythonpython number guessing game tutorialhow to make a simple guessing game in pythonhow to make an number guessing game in python begniarsguessing game in python