Last active
January 12, 2018 20:29
-
-
Save rschuetzler/fd5fa091664d3abb5af08805352a5b18 to your computer and use it in GitHub Desktop.
Show a Python Program
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
x = 1 | |
if x > 3: | |
print("X is big") | |
else: # Invalid syntax error | |
print("X is small") |
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
x = 1 | |
if x > 3: | |
print("X is big") | |
else: | |
print("X is small") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment