Python Comments

Comment is very useful part of any programming languages.

Same as other programming languages, you can write comment in Python.

You can add comment by `#`

# This is comment in Python

# Another Line for Comment

If you want to define multiple line comment then you can do it using `triple quotes (“”””)`

"""

This is comment in Python

with multiple lines.

"""