python comemnt code example
Example 1: python comment
# To make a Python Comment just use # and type.
"""
For Multi-Line Comments
Use Three """
"""
Example 2: comments in python
#this is commented
'''
this
is
also
a
comment
'''
# To make a Python Comment just use # and type.
"""
For Multi-Line Comments
Use Three """
"""
#this is commented
'''
this
is
also
a
comment
'''