The following is displayed by a print function call. Select all of the function calls that result in this output.

Questions & AnswersCategory: PythonThe following is displayed by a print function call. Select all of the function calls that result in this output.
Geek Boy Staff asked 2 years ago

The following is displayed by a print function call. Select all of the function calls that result in this output.

1. tom
2. dick
3. harry

a. print(”’tom
\ndick
\nharry”’)
b. print(”’tomdickharry”’)
c. print(‘tom\ndick\nharry’)
d. print(‘tom
dick
harry’)