What Will Be The Output Of The Following Python Codep Pre #1019
What will be the output of the following Python code?</p> <pre><code class="language-python" line="1"> str = raw_input("Enter your input: "); print "Received input is : ", str </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 Files - Python Files - Quiz No.2.
What will be the output of the following Python code?
str = raw_input("Enter your input: "); print "Received input is : ", str
Enter your input: Hello Python Received input is : Hello Python
Enter your input: Hello Python Received input is : Hello
Enter your input: Hello Python Received input is : Python
None of the mentioned