Skip to content

Instantly share code, notes, and snippets.

@rschuetzler
Last active January 12, 2018 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rschuetzler/fd5fa091664d3abb5af08805352a5b18 to your computer and use it in GitHub Desktop.
Save rschuetzler/fd5fa091664d3abb5af08805352a5b18 to your computer and use it in GitHub Desktop.
Show a Python Program
x = 1
if x > 3:
print("X is big")
else: # Invalid syntax error
print("X is small")
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