What Will Be The Output Of The Following Python Codep Pre #634
What will be the output of the following Python code?</p> <pre><code class="language-python"> def sayHello(): print('Hello World!') sayHello() sayHello() </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Python Functions - Python Function - Quiz No.1.
What will be the output of the following Python code?
def sayHello(): print('Hello World!') sayHello() sayHello()
Hello World! Hello World!
'Hello World!' 'Hello World!'
Hello Hello
None of the mentioned