We can use comments in PYthon which will not be executed by Python Interpreter (Compiler). We can use single-line comments or Multiline comments.
# This is a single line comment
print("Welcome to Art of CSE")
print("Welcome to Art of CSE") # Another comment
#This is a comment
#This is another comment
#You can add more comment
print("Welcome to art of CSE")
"""
This is a comment
This is another comment
You can add more comment
"""
print("Welcome to Art of CSE")