Created
November 8, 2017 10:28
-
-
Save kiwiBBC/01bedb0552a3bfcd464b62099b5cd28d to your computer and use it in GitHub Desktop.
bit :: Python session 1 :: homework
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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