#comments
#PYTHONCOMMENTS
#vimalcomputer
can be used to explain Python code.
Comments can be used to make the code more readable.
print("Hello, World!") #This is a comment
Multiline Comments
#This is a comment
#written in
#more than just one line
"""
This is a comment
written in
more than just one line
"""