Hi..today i found in a site a small guessing game in python..
here the game codes
Guess.py
- # This is a guess the number game.
- import random
- guessesTaken = 0
- print(‘Hello! What is your name?’)
- myName = input()
- number = random.randint(1, 20)
- print(‘Well, ‘ + myName + ‘, I am thinking of a number between 1 and 20.’)
- while guessesTaken < 6:
- print(‘Take a guess.’) # There are four spaces in front of print.
- guess = input()
- guess = int(guess)
- guessesTaken = guessesTaken + 1
- if guess < number:
- print(‘Your guess is too low.’) # There are eight spaces in front of print.
- if guess > number:
- print(‘Your guess is too high.’)
- if guess == number:
- break
- if guess == number:
- guessesTaken = str(guessesTaken)
- print(‘Good job, ‘ + myName + ‘! You guessed my number in ‘ + guessesTaken + ‘ guesses!’)
- if guess != number:
- number = str(number)
- print(‘Nope. The number I was thinking of was ‘ + number)
run the file by python Guess.py
its nice to learn python by playing with small games like this..
i like your articles so much. please try to post them more frequently. lista de emails lista de emails lista de emails lista de emails lista de emails