python 2 comment 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: how to add comment in python
# Use Hashtag to add comments in python
# This is a comment
""" This is a comment"""
"""
This is a comment
Also this is a comment
"""
# Use Hashtag to add comments in python