Multiple choice

What is the correct syntax for a multiline comment?

  1. """This is a multiline comment""""

  2. #This is a multiline comment""

  3. <!--This is a multiline comment-->""

  4. //This is a multiline comment//"

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Python uses triple quotes (either single or double) to define multiline strings, which are commonly used for multiline comments.