Q. What is the output of the following code?
Code:
x = 5 y = "hello" print(x + y)
β
Correct Answer: (D)
TypeError
x = 5 y = "hello" print(x + y)
You must be Logged in to update hint/solution