Python Comment
Comment is used to explain Python code.
Comment is used to help someone else understand the program we have written
Python's interpreter will ignore this comment.
Comment has two types.
Single line comment
Multiple line comment
A single line comment always begins with the word # (HASH).
#print function display the message.
print("Vijanthi Tutorial")
Triple quotes are used in multiple line comments.
"""
Triple quotes are multiple
lines comment
indicates.
"""
print("vijanthitutorial.com")