Python Comments Flashcards

1
Q

Give three reasons for using comments.

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Comments starts with a ___, and Python will ignore them.

A

#

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Comments can be placed at the end of a line, and Python will _______________.

A

ignore the rest of the line

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

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

A

executing code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Python does not really have a syntax for multiline comments.

To add a multiline comment you could insert a __ for each line.

A

#

example:
#This is a comment
#written in
#more than just one line
print(“Hello, World!”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

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

A

multiline string (triple quotes)

example:

”””
This is a comment
written in
more than just one line
“””
print(“Hello, World!”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly