Commenting in Python
Briefly

Python comments begin with the # character, known variously as octothorpe, hashmark, number sign, or pound sign. Comments help clarify code intentions.
Unlike other languages, Python lacks a multiline comment syntax; what may look like a multiline comment is often a docstring or multiline string.
Inline comments can enhance readability by providing explanations for specific lines of code, and they can even be placed in the midst of complex expressions.
While Python allows for single-line comments, it also facilitates inline comments that can accompany or follow specific lines of code for clarity.
Read at Pythonmorsels
[
]
[
|
]