9 python-comments
we use # char for single line comments
#This is a comment
print("this line will print")
# this line will not print
Python has no multi-line comment but multi-line string is used for this purpose.
"""
This is like a multi-line comment
But actually is a multi-line strings
You can see use it as multi-line comment
"""