Skip to content

Instantly share code, notes, and snippets.

@kiwiBBC
Created November 8, 2017 10:28
Show Gist options
  • Save kiwiBBC/01bedb0552a3bfcd464b62099b5cd28d to your computer and use it in GitHub Desktop.
Save kiwiBBC/01bedb0552a3bfcd464b62099b5cd28d to your computer and use it in GitHub Desktop.
bit :: Python session 1 :: homework
secret = int("8")
guess = int(raw_input("Enter the value for guess: "))
print guess
if guess == secret:
print "CONGRATULATIONS. YOU'VE WON !!!"
else:
print "Please try again."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment