Answer:
None of the options is correct.
Explanation:
One of the simplest statements that you can write in Python is a print statement, which causes a message to be displayed on the screen. For example, the following statement causes the message Python programming is fun! to be displayed:
print 'Python programming is fun!'
Notice that after the word print, the Python programming is fun! was written inside a set of single-quote marks. The quote marks are necessary, but they will not be displayed. They simply mark the beginning and the end of the text that we wish to display.
Here is an example of how you would type this print statement at the interpreter’s
prompt:
>>> print 'Python programming is fun!'
After typing the statement you press the Enter key and the Python interpreter executes the statement, as shown here:
>>> print 'Python programming is fun!'
Python programming is fun!
>>>
Thus, the correct way to write the codes in the question is:
print 'Programming is fun'
print 'Python'
print 'Computer Science'