Python Syntax & Comments

 print("hello world")
print("===============")
#comments with #
print("hari taraka prabhu")
print("===============")

#doc strings
"""this is
python program"""
print("manyam ayyappa")



o/p:

hello world
===============
hari taraka prabhu
===============
manyam ayyappa