Python Comments Flashcards
Give three reasons for using comments.
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.
Comments starts with a ___, and Python will ignore them.
#
Comments can be placed at the end of a line, and Python will _______________.
ignore the rest of the line
A comment does not have to be text that explains the code, it can also be used to prevent Python from ________.
executing code
Python does not really have a syntax for multiline 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 ___________ to put a multiline comments.
Since Python will ignore string literals that are not assigned to a variable, you can add a _______________ in your code, and place your comment inside it
multiline string (triple quotes)
example:
”””
This is a comment
written in
more than just one line
“””
print(“Hello, World!”)