Skip to content

Instantly share code, notes, and snippets.

@bugkiller78
Last active October 14, 2020 19:22
Show Gist options
  • Save bugkiller78/54d96ba04ccac10bf743f2266b9eb167 to your computer and use it in GitHub Desktop.
Save bugkiller78/54d96ba04ccac10bf743f2266b9eb167 to your computer and use it in GitHub Desktop.
SmartNinja_DN2_Marko
#Domača naloga 2
#Guess the number
secret_number = 33
guess = input("Please, guess the number:")
if secret_number == int(guess):
print("Congratulations, you WON!!!")
else:
print("Sorry wrong number, GAME OVER!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment