15. Python - PEP 8 - Comments
PEP 8 - Comments “If the implementation is hard to explain, it’s a bad idea.” — The Zen of Python import this You should use comments to document code as it’s written. It is important to document your code so that you, and any collaborators, can understand it. # Block Comments. # InLine Comments. # Documentation Comments. https://www.python.org/dev/peps/pep-0008/
PEP 8 - Comments “If the implementation is hard to explain, it’s a bad idea.” — The Zen of Python import this You should use comments to document code as it’s written. It is important to document your code so that you, and any collaborators, can understand it. # Block Comments. # InLine Comments. # Documentation Comments. https://www.python.org/dev/peps/pep-0008/