Lesson 2: Code Comments — #
Code without explanation is forgotten fast — even by you, a week from now. A comment is Python's answer to that: text that explains the code, which Python ignores completely and which exists only for the humans reading the code.
The # mark tells Python "ignore from here to the end of the line". Everything after it is for you, not for the computer.
- comment
- Text starting with # that Python ignores.