Last active
January 10, 2021 18:22
-
-
Save hungryzi/c69f9aa518f84d126aec5503d0b794f7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
passcode = input("What's the passcode? ") | |
print("Your passcode is " + passcode) | |
is_correct = passcode == '0042' | |
print("is_correct = " + str(is_correct)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment