inline comments python code example
Example 1: python comment
# This is a comment
""" This is a comment"""
"""
This is a comment
Also this is a comment
"""
Example 2: python comment
# Single line Comment
"""
(''' single quotes ''') will also work
Multi Line
Comment
"""
Example 3: how to comment python
# This is a comment
'''
This is a
MULTI LINE comment!
'''
Example 4: python comment block
"""
this
is
a multiline
comment
"""