Python Tutorials · Python Comments

Python Comments

Learn all about Python Comments in this comprehensive tutorial.

5 min read beginner
  • Comments can be used to explain Python code.
  • Comments starts with a #, and Python will ignore them:
  • Python does not really have a syntax for multiline comments.

Introduction

Comments can be used to explain Python code.

Comments can be used to make the code more readable.

Comments can be used to prevent execution when testing code.

Creating a Comment

Comments starts with a #, and Python will ignore them:

python

Comments can be placed at the end of a line, and Python will ignore the rest of the line:

python

A comment does not have to be text that explains the code, it can also be used to prevent Python from executing code:

python

Multiline Comments

Python does not really have a syntax for multiline comments.

To add a multiline comment you could insert a # for each line:

python

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:

python

As long as the string is not assigned to a variable, Python will read the code, but then ignore it, and you have made a multiline comment.

Module quiz

2 questions
1

Which of the following is true about Python Comments?

2

What is the most common pitfall when working with Python Comments?

Answer all questions to submit.