Created
January 1, 2018 22:29
-
-
Save ryanckulp/0e9ef2d30ab9604024d22a7267bfc2c3 to your computer and use it in GitHub Desktop.
if/else example in Python
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
if x == 5: | |
print("Correct!") | |
else: | |
print("Incorrect!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment