MULTI LINE COMMENT

While Python does not have a specific syntax for multi-line comments, you can use triple-quotes (''' or """) to create a multi-line string. This string is ignored by the interpreter and serves as a multi-line comment.

'''

This is a

multi-line comment

using triple-quotes

'''

print("Python is great!")

 

"""
This is a comment
written in
more than just one line
"""

print("Hello, World!")