The following is displayed by a print function call. Select all of the function calls that result in this output.
tom
dick
harry
tom
dick
harryA.
print('''tom
\ndick
\nharry''')B. print(”’tomdickharry”’)
C. print(‘tom\ndick\nharry’)
D.
print('tom
dick
harry')Answer: Option C

Join The Discussion