How can you create multiline comments in Python? (Select Three Options)
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 */
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)