Skip to content

Instantly share code, notes, and snippets.

@santosadrian
Created February 2, 2020 08:52
Show Gist options
  • Save santosadrian/6b81027560bb23ef41b44cb7808e12ef to your computer and use it in GitHub Desktop.
Save santosadrian/6b81027560bb23ef41b44cb7808e12ef to your computer and use it in GitHub Desktop.
Example 2
# A comment, this is so you can read your program later.
# Anything after the # is ignored by python
print("I could have code like this") # and the comment after is ignored.
# You can use a comment to "disable" or comment out a piece of code:
# print("This won’t run")
print('This will run.')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment