Report Bug
Qus : Which of the following will give error ?
Qusनिम्नलिखित में से कौन त्रुटि देगा?

A. a=b=c=1
B. a,b,c=1
C. a, b, c = 1, "python", 1.5
D. None of the above


Solution
B. a,b,c=1



Explanation

TypeError: cannot unpack non-iterable int object




Report Bug