How can you create multiline comments in Python? (Select Three Options)

Questions & AnswersCategory: PythonHow can you create multiline comments in Python? (Select Three Options)
Geek Boy Staff asked 2 years ago

How can you create multiline comments in Python? (Select three options)
a. A multiline comment can be placed between -- and --

b. A multiline comment can be placed between the string ''' (triple apostrophe)

c. We can create a multiline comment from multiple single-line comments by inserting the # sign at the beginning of each line

d. A multiline comment can be placed between the string """ (triple quotation marks)

e. A multiline comment can be placed between * and *

f. A multiline comment can be placed between /* and */

1 Answers
Geek Boy Staff answered 2 years ago

b. A multiline comment can be placed between the string ''' (triple apostrophe)
c. We can create a multiline comment from multiple single-line comments by inserting the # sign at the beginning of each line
d. A multiline comment can be placed between the string """ (triple quotation marks)