Guess The Number Game in Python

Python is a essay  language  for gaming . Today i’m going to share Guess The Number Game in Python .

Code for Guess The Number Game in Python in Python:

import random
value=random.randint(1,20)
won=False
wtp=True
while(wtp):
    print"hi ! I m thinking of a no.,can you guess it?"for tri in range(3):
        guess=int(raw_input("Enter a no: "))
        if(guess==value):
            won=True
            print"Congrats"break
        elif(tri<2):
                print"sorry! try again"
                print 3-tri-1,"tries left"if(won==False and tri==2):
            print"sorry ! you lost"
            print "NO. was:", value
    choice=str(raw_input("would you like to play again y/n "))
    if(choice=="n"):
        wtp=False

 

1 thought on “Guess The Number Game in Python

  1. Hello it’s me, I am also visiting this web page regularly,
    this web site is in fact good and the people are truly sharing pleasant thoughts.

Leave a Reply

Your email address will not be published.