multiple choice\nwhat is the result when you run the following line of code after a prompt?\n>>> print \good…

multiple choice\nwhat is the result when you run the following line of code after a prompt?\n>>> print \good job\\n \good job\\n good job\n no result due to an error\n good job
Answer
Brief Explanations:
In Python 2, the print statement without parentheses can be used to print a string. The code print "Good job" will output the string "Good job" without quotes. In Python 3, print is a function and requires parentheses like print("Good job"). Assuming this is Python 2 - style code execution, it will print the text without quotes.
Answer:
Good job