Comments

Comments in Python can be used to explain any program code. It can also be used to hide the code as well.

Comments are the most helpful stuff of any program. It enables us to understand the way, a program works. In python, any statement written along with # symbol is known as a comment. The interpreter does not interpret the comment.

Comment is not a part of the program, but it enhances the interactivity of the program and makes the program readable.

Python supports two types of comments:

  1. Single Line Comment
  2. Multi Line Comment

Single Line Comment

In case user wants to specify a single line comment, then comment must start with ?#?

Example
snippet
# This is single line comment.
 print "Hello Python"
Output
Hello Python

Multi Line Comment

Multi lined comment can be given inside triple quotes.

''' This
    Is
    Multipline comment'''
Example
snippet
#single line comment
print "Hello Python"
'''This is
multiline comment'''
Output
Hello Python
Related Tutorial
Follow Us
https://www.facebook.com/Rookie-Nerd-638990322793530 https://twitter.com/RookieNerdTutor https://plus.google.com/b/117136517396468545840 #
Contents +