Python Comments

Python Comments:

Python comments are used to give a brief description about any specific line of code or about a module in the code to make the code more user-friendly.

Python Comments can be of two types:

  • Single line Comments
  • Multi line Comments

Single Line Comments:

Single line comments starts with # in Python.

Multi Line Comments:

Multi line comments are written inside triple quotes.

Example:

# Print a = 10
a = "Single line Comment"
print a
 
"""Print b = 50
multi line
comment """
b = 10
print b

Output:

Please follow and like us:
Content Protection by DMCA.com