Video Coming Soon...
2: Comments and Pound Characters
Comments are very important in your programs. They are used to tell you what something does in English, and they are used to disable parts of your program if you need to remove them temporarily. Here's how you use comments in Python:
# 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 code:
# print("This won't run.")
print("This will run.")
From now on, I'm going to write code like this. It is important for you to understand that everything does not have to be literal. If my Jupyter looks a little different from yours, or if I'm using a text editor, the results will be the same. Focus more on the textual output and less on the visual display such as fonts and colors.
What You Should See
I could have code like this.
This will run.
Again, I'm not going to show you screenshots of all the terminals possible. You should understand that the preceding is not a literal translation of what your output should look like visually, but the text is what you focus on.
Study Drills
- Find out if you were right about what the
#
character does and make sure you know what it's called (octothorpe or pound character). - Take your code and review each line going backward. Start at the last line, and check each word in reverse against what you should have typed.
- Did you find more mistakes? Fix them.
- Read what you typed above out loud, including saying each character by its name. Did you find more mistakes? Fix them.
Common Student Questions
Are you sure
#
is called the pound character? I call it the octothorpe because that is the only name that no one country uses and that works in every country. Every country thinks its name for this one character is both the most important way to do it and the only way it's done. To me this is simply arrogance and, really, y'all should just chill out and focus on more important things like learning to code.Why does the
#
inprint("Hi # there.")
not get ignored? The#
in that code is inside a string, so it will be put into the string until the ending"
character is hit. Pound characters in string are just considered characters, not comments.How do I comment out multiple lines? Put a
#
in front of each one.I can't figure out how to type a
#
character on my country's keyboard. How do I do that? Some countries use the Alt key and combinations of other keys to print characters foreign to their language. You'll have to look online in a search engine to see how to type it.Why do I have to read code backward? It's a trick to make your brain not attach meaning to each part of the code, and doing that makes you process each piece exactly. This catches errors and is a handy error-checking technique.
Register for Learn Python the Hard Way, 5th Edition (2023-2024)
Register today for the course and get the all currently available videos and lessons, plus all future modules for no extra charge.