Comment in python

19 August 2020

Code

# Single line comment:
# using hash ('#') at the beginning of a line

# ...... this is a single line comment .......
# ...... this is a single line comment .......
# ...... this is a single line comment .......

# Multiline comment:
# Using triple quotes around the text

"""
...... this 
is a 
multiline 
comment ......

"""






Any errors in code above?
Please send a message.