comment python multiline 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 multi comment
"""Put comments inside triple quotes"""
# This is a comment
""" This is a comment"""
"""
This is a comment
Also this is a comment
"""
"""Put comments inside triple quotes"""