Python Comments
Chapter:
Python
Last Updated:
22-09-2018 08:03:29 UTC
Program:
/* ............... START ............... */
# This is a single line comment
print('Python comments example program ')
# Python Multiline comments Example
''' This
Is
Multiline comments
'''
/* ............... END ............... */
Output
Python comments example program
Notes:
-
In Python there are two types of comments single line comment and multiline comments.
- In single line comment before comments start we use "#" symbol for mentioning the comments.
- For Multiline comment we can start the comment by giving the text inside triple quotes ' ' '.
- In the above program you can see that single line comment at the top and multiline comments at the bottom.