Created
August 2, 2011 06:50
-
-
Save adaptives/1119714 to your computer and use it in GitHub Desktop.
LPTHW - Exercise 2
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
# 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 also 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