Comments

Comments in Python are the lines in the code that are ignored by the interpreter during the execution of the program.

Single line commenting

# sample example code
print("Hello world")

multi line commenting

""" Multiple lines are commented
like this ""
print("Hello world")

or

''' Multiple lines are commented
like this '''
print("Hello world")