Comments in Python Programming

 


In Python there are two types of comments

 

1. Single line comment

#this is single line comment

#welcome to learn python easily


2.Multi line comment

For Multi line use three double quotes to open and close for writing the comments.

 """

welcome to learn python easily

hi this is kiran

"""


Comments