python comment format code example
Example 1: python comment
# This line is cemmented out
Example 2: python comment
# Single line Comment
"""
(''' single quotes ''') will also work
Multi Line
Comment
"""
# This line is cemmented out
# Single line Comment
"""
(''' single quotes ''') will also work
Multi Line
Comment
"""