python comment command code example
Example 1: python comment
# To make a Python Comment just use # and type.
"""
For Multi-Line Comments
Use Three """
"""
Example 2: how to put comments in python
# Just put a hash before the comment. This can help other collaborators understand what you are doing, or help you remember the intention of a certain line of code. It should appear gray. Oh - and by the way, the Python computer ignores your comments.