what to put in comment python code example
Example 1: comment in python
# This is a one line comment
"""
This is a comment for multiple lines,
as you can see
"""
""" But also this is valid """
Example 2: python comment
# Single line Comment
"""
(''' single quotes ''') will also work
Multi Line
Comment
"""