Python Comments Flashcards
Comments can be used to explain Python code.
Python Comments
Comments can be used to make the code more readable.
Python Comments
Comments can be used to prevent execution when testing code.
Python Comments
Comments starts with a #, and Python will ignore them:
Creating a Comment
Comments can be placed at the end of a line, and Python will ignore the rest of the line:
Creating a Comment
A comment does not have to be text that explains the code, it can also be used to prevent Python from executing code:
Creating a Comment
To add a multiline comment you could insert a # for each line:
Multiline Comments
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:
Multiline Comments