Vidyalelo
Python · Q46

Files Handling in Python

Programming · Python · question 46

Q46

What will be the output of the following Python code? str = raw_input("Enter your input: "); print "Received input is : ", str

A.
Enter your input: Hello Python
Received input is : Hello Python
Answer
B.
Enter your input: Hello Python
Received input is : Hello
C.
Enter your input: Hello Python
Received input is : Python
D.
None of the mentioned

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board