Select All Options That Printp Prehellohowareyoupre #34
Select all options that print.</p> <pre><code class="language-text">hello-how-are-you</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.
Select all options that print.
hello-how-are-you
print(‘hello’, ‘how’, ‘are’, ‘you’)
print(‘hello’, ‘how’, ‘are’, ‘you’ + ‘-‘ * 4)
print(‘hello-‘ + ‘how-are-you’)
print(‘hello’ + ‘-‘ + ‘how’ + ‘-‘ + ‘are’ + ‘you’)