# You use a hastag at the beginning of the line to make anything after it a comment
'''
You can also make a multi line comment
With three single quotes at the beginning and end!
'''
# single line : add #
"""
The recommended method for commenting multiple lines is using # on each line.
The (“””) method isn’t actually a comment but defines a Text constant
of the text between the (“””).
It isn’t displayed, but exists and could potentially cause unexpected errors.
"""
# Single Line Comment.
'''
Multiple Line Comment.
There's no Multiple Line Comment in python.
Use string tag to comment.
Three single quote at the start and the end.
'''
"""
This is a
Python multi-line Docstring
which can also be used
to create a python block comment
Just like this one
"""
print ('This section is not a python block comment')