what is a comment in 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
# To make a Python Comment just use # and type.
"""
For Multi-Line Comments
Use Three """
"""
Example 3: comments in python
#this is commented
'''
this
is
also
a
comment
'''
Example 4: python comment
#This is a comment