Multiple choice Which of the following is the correct syntax for an output statement in Python 3? print "Computer Science" output(Computer Science) print("Computer Science") print(Computer Science) Reveal answer Fill a bubble to check yourself C Correct answer Explanation In Python 3, print is a function, so it requires parentheses to enclose the arguments. Option C correctly uses parentheses and quotes for the string.