Course Content
Introduction to Python
Introduction to Python
Comments
Congratulations! As your code grows in size, it can become challenging to understand each part, even if you're the author.
That's why it's essential to get in the habit of leaving comments in your code. Comments help clarify the purpose or function of a specific code segment.
To designate a line as a comment, start it with the #
symbol.
For instance,
print('Message 1') print('Message 2')
But remember, if you put a #
before the print()
statement, that line won't run.
#print('Message 1') print('Message 2')
Now, onto our question:
Thanks for your feedback!