Q. What is the output of the below code?
Code:
a1,b1,c1=1,2,3,4,5 print(b1)
β
Correct Answer: (D)
ValueError
a1,b1,c1=1,2,3,4,5 print(b1)
You must be Logged in to update hint/solution