Python - Comment

Comments are the statements that are not read and ignored by the translators. Python comment are start with a hash symbol(#). All characters after the # and up to the end of the line are part of the comment and the Python interpreter ignores them.

# First comment
print ("Hello, Python!") # second comment
Hello, Python!

Multiple lines comment can also be used by following triple-quotes

'''
This is a multi-line
comment.
'''