Difference between Comments and Docstrings
Comments are annotations used to help others understand your code. They don't affect how a program is run.
In Python, a comment can be created by inserting an "#", also known as a number sign or hash symbol. The text after it on a line will be ignor...
codingyourself.com1 min read