What will be the output of the following Python code?
str = raw_input("Enter your input: ");
print "Received input is : ", str
str = raw_input("Enter your input: ");
print "Received input is : ", strA. Enter your input: Hello Python
Received input is : Hello Python
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

Join The Discussion