How do you guess numbers in python?

Most of the geeks from a CS (Computer Science) background, think of their very first project after doing a Programming Language. Here, you will get your very first project and the basic one, in this article.

Task: Below are the steps:

  • Build a Number guessing game, in which the user selects a range.
  • Let’s say User selected a range, i.e., from A to B, where A and B belong to Integer.
  • Some random integer will be selected by the system and the user has to guess that integer in the minimum number of guesses

Analysis:

       Explanation 1: If the User inputs range, let’s say from 1 to 100. And compiler randomly selected 42 as the integer. And now the guessing game started, so the user entered 50 as his/her first guess. The compiler shows “Try Again! You guessed too high”. That’s mean the random number (i.e., 42) doesn’t fall in the range from 50 to 100. That’s the importance of guessing half of the range. And again, the user guesses half of 50 (Could you tell me why?). So the half of 50 is 25. The user enters 25 as his/her second guess. This time compiler will show, “Try Again! You guessed too small”. That’s mean the integers less than 25 (from 1 to 25) are useless to be guessed. Now the range for user guessing is shorter, i.e., from 25 to 50. Intelligently! The user guessed half of this range, so that, user guessed 37 as his/her third guess.  This time again the compiler shows the output, “Try Again! You guessed too small”. For the user, the guessing range is getting smaller by each guess. Now, the guessing range for user is from 37 to 50, for which the user guessed 43 as his/her fourth guess. This time the compiler will show an output “Try Again! You guessed too high”. So, the new guessing range for users will be from 37 to 43, again for which the user guessed the half of this range, that is, 40 as his/her fifth guess.  This time the compiler shows the output, “Try Again! You guessed too small”. Leaving the guess even smaller such that from 41 to 43. And now the user guessed 41 as his/her sixth guess. Which is wrong and shows output “Try Again! You guessed too small”. And finally, the User Guessed the right number which is 42 as his/her seventh guess.

          Total Number of Guesses = 7

    Explanation 2: If the User inputs range, let’s say from 1 to 50. And compiler randomly selected 42 as the integer. And now the guessing game started. So the half of 50 is 25. The user enters 25 as his/her First guess. This time compiler will show, “Try Again! You guessed too small”. That’s mean the integers less than 25 (from 1 to 25) are useless to be guessed. Now the range for user guessing is shorter, i.e., from 25 to 50. Intelligently! User guessed half of this range, so that, user guessed 37 as his/her second guess.  This time again the compiler shows the output, “Try Again! You guessed too small”. For the user, the guessing range is getting smaller by each guess. Now, the guessing range for user is from 37 to 50, for which the user guessed 43 as his/her third guess. This time the compiler will show an output “Try Again! You guessed too high”. So, the new guessing range for users will be from 37 to 43, again for which the user guessed the half of this range, that is, 40 as his/her fourth guess.  This time the compiler shows the output, “Try Again! You guessed too small”. Leaving the guess even smaller such that from 41 to 43. And now the user guessed 41 as his/her fifth guess. Which is wrong and shows output “Try Again! You guessed too small”. And finally, the User Guessed the right number which is 42 as his/her sixth guess.

         Total Number of Guesses = 6

So, the minimum number of guesses depends upon range. And the compiler must calculate the minimum number of guessing depends upon the range, on its own. For this, we have a formula:-

 Minimum number of guessing = log2(Upper bound – lower bound + 1)

Algorithm: Below are the Steps:

  • User inputs the lower bound and upper bound of the range.
  • The compiler generates a random integer between the range and store it in a variable for future references.
  • For repetitive guessing, a while loop will be initialized.
  • If the user guessed a number which is greater than a randomly selected number, the user gets an output “Try Again! You guessed too high“
  • Else If the user guessed a number which is smaller than a randomly selected number, the user gets an output “Try Again! You guessed too small”
  • And if the user guessed in a minimum number of guesses, the user gets a “Congratulations! ” Output.
  • Else if the user didn’t guess the integer in the minimum number of guesses, he/she will get “Better Luck Next Time!” output.

Below is the Implementation of the Algorithm:

Python3

import random

import math

lower = int(input("Enter Lower bound:- "))

upper = int(input("Enter Upper bound:- "))

x = random.randint(lower, upper)

print("\n\tYou've only ",

       round(math.log(upper - lower + 1, 2)),

      " chances to guess the integer!\n")

count = 0

while count < math.log(upper - lower + 1, 2):

    count += 1

    guess = int(input("Guess a number:- "))

    if x == guess:

        print("Congratulations you did it in ",

              count, " try")

        break

    elif x > guess:

        print("You guessed too small!")

    elif x < guess:

        print("You Guessed too high!")

if count >= math.log(upper - lower + 1, 2):

    print("\nThe number is %d" % x)

    print("\tBetter Luck Next time!")

C

#include

#include

#include

int main()

{

    int number, guess, nguesses=1;

    srand(time(0));

    number = rand()%100 + 1;

    do

    {

        printf("Guess the number between 1 to 100\n");

        scanf("%d", &guess);

        if(guess>number)

        {

            printf("you guessed to high\n");

        }

        else if(guess

        {

            printf("you guessed too low\n");

        }

        else

        {

            printf("You guessed the correct number");

            printf("attempts : %d\n", nguesses);

        }

        nguesses++;

    } while(guess!=number);

    return 0;

}

OUTPUT: Below is the output of the above Program

How do you guess numbers in python?

OUTPUT FOR THE GUESSING GAME


How do you print a guess number in Python?

We think the algorithm can be expressed directly as executable Python code: import random number = random. randint(1, 100) attempts = 0 # count no of attempts to guess the number guess = 0 while guess != number: guess = eval(raw_input('Guess a number: ')) attempts += 1 if guess == number: print 'Correct!

How do you guess a number algorithm?

Divide and Conquer Algorithm (Guessing Game) Steps:.
Add the Highest Range + Lowest range - 1 = Possible Guesses..
Divide Possible Guesses by 2 Round Up (your guess), ask is this your number ?.
If your guess is to low: the Lowest Range = your guess +1..
If your guess is to high: ... .
If your guess isn't to low or to high: ... .
Repeat..

What is a number guessing game?

A number guessing game is a simple guessing game where a user is supposed to guess a number between 0 and N in a maximum of 10 attempts. The game will end after 10 attempts and if the player failed to guess the number, and then he loses the game.

How do you make a guess counter in Python?

“how to count the number of guesses in python” Code Answer.
from random import randint..
guesses = 0..
randomNum = (randint(0,100)).
numPlayer = 0..
while (numPlayer!=randomNum):.
numPlayer = int(input("Guess the number(0-100)")).
if (numPlayer>randomNum) :.
print "It's -".