py comments 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: pyhton comment
#This is a comment
#And another one
print("Hello !) #Comment in the same line
"""
A multiline
comment
"""
print("Hello !)