Invisible to the Python Interpreter
# Working with Comments in python language -
# we use comments to write some self notes or message for team…
# Print (“Hello World”)
print(“I am learning Python”)
print(‘hello world’)
print('Hello World!!!') # Yes you can comment one end of the statement as well
print('Hello World') # rest part is comment
Multi-line Comment – delimiter (“””) on each starting and end of the comment.
""
This would be a multiline comment
in Python that spans several lines and
describes your code, your day, or anything you want it to
"""