Python Comments - Coding Chaser

Latest

Let the Journey To Programming begin...

Saturday, December 28, 2019

Python Comments


python


Comments:


Python has commenting capability for the purpose of in-code documentation.
Comments start with a #, and Python will render the rest of the line as a comment
#This is a comment.
print("Hello, World!")

 

Multi Line Comments:

Python does not really have a syntax for multi line comments.

To add a multiline comment you could insert a # for each line:
Example:
#This is a comment
#written in
#more than just one line
print("Hello, World!")

Or, not quite as intended, you can use a multiline string.

Since Python will ignore string literals that are not assigned to a variable, you can add a multiline string (triple quotes) in your code, and place your comment inside it:
Example:
"""
This is a comment
written in
more than just one line
"""

print("Hello, World!")


No comments:

Post a Comment

Text