Skip to main content

Guessing Game

In this post there is one small easy guessing game in python language. The Guessing Game uses Binary Search Algorithm to guess the number. 

How it Works

It simply returns the mid value every time. It guesses the number depending on what you give input (low or high). If you give low as a input than it updates low value to mid+1. And if you give high as a input than it updates high to mid-1. And it will continue till your guessed number arrived.
 ##############################################################################  
   
 #Author@SPPU CSE GURU  
   
 print("Let's Play Guessing Game")  
   
 def Guessing_Game():  
   input("Take A Number Between 1 to 100 in Your Mind and Press Enter (Don't Enter No.) ")  
     
   high=100  
   low=0  
   while True:  
     guess=(high+low)//2  
     print("Is Your Number",guess)  
     res=str(input("""  
            Enter 'h' if Number is too high  
            Enter 'l' if Number is too low  
            Enter 'c' if Number is correct \n""")).lower()  
     if res=='h' :  
       high=guess-1  
     elif res=='l' :  
       low=guess+1  
     elif res=='c':  
       print("Great Choise",guess)  
       ch=input("Would you like to play again! (y or n)")  
       if ch=='y':  
         Guessing_Game()  
       else:  
         print("Thankyou for Playing Guessing Game")  
         break  
     else:  
       break  
 Guessing_Game()  
 ##############################################################################    
If you find it useful please Comment and Share with your friends. 

Comments

Popular posts from this blog

DSL A1

Hello Friends lets See the first practical of Data Structure Laboratory(DSL) of SPPU Second Year. Some of the students are afraid of coding as it is new to all of us. So we are here to conquer your fear. You will find it easy as it explained by students only. So lets Get into it The first practical of part A is : In second year computer engineering class, group A student’s play cricket, group B students play badminton and group C students play football. Write a Python program using functions to compute following: -  a) List of students who play both cricket and badminton  b) List of students who play either cricket or badminton but not both  c) Number of students who play neither cricket nor badminton  d) Number of students who play cricket and football but not badminton.  (Note- While realizing the group, duplicate entries should be avoided, Do not use SET built-in functions)  So most of us know the SET theory in mathematics. The above problem is very easy if you have knowledge about

Bouncing Ball

Group B   Practical 4 a   Problem Statement :   Write a C++ program to implement bouncing ball using sine wave form. Apply the concept of polymorphism. Check Out Code Here  ðŸ‘‡ Outputs :  Code can get updated so also come back later to see if there is any changes. Also if there is any problem with code you can comment below. If you like it, do share with your friends.😊

OOP 6

   Object Oriented Programming Group B - Practical : 6 Problem Statement :  Write C++ program using STL for sorting and searching user defined records such as personal records (Name, DOB, Telephone number etc) using vector container. Check Out Code Here  ðŸ‘‡ Code can get updated so also come back later to see if there is any changes. Also if there is any problem with code you can comment below. If you like it, do share with your friends.😊