Skip to content

Instantly share code, notes, and snippets.

@filipgorczynski
Last active February 5, 2018 08:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save filipgorczynski/04f4b97613da6970c44f5c4c8c115d72 to your computer and use it in GitHub Desktop.
Save filipgorczynski/04f4b97613da6970c44f5c4c8c115d72 to your computer and use it in GitHub Desktop.
Public gist for guess the number game
"""
Code for program 33 from https://wiki.python.org/moin/SimplePrograms
"""
import random
guesses_made = 0
name = raw_input('Hello! What is your name: ')
number = random.randint(1, 20)
print 'Well, {0}, I am thinking of a number between 1 and 20.'.format(name)
while guesses_made < 6:
guess = int(raw_input('Take a guess: '))
guesses_made += 1
if guess < number:
print 'Your guess is too low.'
if guess > number:
print 'Your guess is too high.'
if guess == number:
break
if guess == number:
print 'Good job, {0}! You guessed my number in {1} guesses!'.format(name, guesses_made)
else:
print 'Nope. The number I was thinking of was {0}'.format(number)
@filipgorczynski
Copy link
Author

Example comment...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment