Multiple choice What is the correct syntax for a multiline comment? """This is a multiline comment"""" #This is a multiline comment"" <!--This is a multiline comment-->"" //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.