Leaving Comments in Code
You may want to put in a few words addressed not to Python but to humans, usually to explain to other readers of the code how you went about the logic of your code.
In Python, a comment is a piece of text that begins with a #
(hash) sign and extends to the end of the line.
Last updated
Was this helpful?