It is helpful to be able to comment code.
Comments are useful for humans. The computer does not read comments.
Python has two types of comment:
single line comments
multi line comments
# this is a single line comment
'''
this is a multi line comment
it can be on many lines
and in any formay
it is useful
'''