The Following Is Displayed By A Print Function Call Select All #32
The following is displayed by a print function call. Select all of the function calls that result in this output.</p> <pre><code class="language-python"> tom dick harry </code></pre>
This multiple choice question (MCQ) is related to the book/course
gs gs109 Python.
It can also be found in
gs gs109 Data Types & Numeric Types - Python Core Data Types - Quiz No.2.
The following is displayed by a print function call. Select all of the function calls that result in this output.
tom dick harry
print('''tom \ndick \nharry''')
print(”’tomdickharry”’)
print(‘tom\ndick\nharry’)
print('tom dick harry')