What will be the output of the following Python code?
>>> import collections
>>> a=collections.namedtuple('a',['i','j'])
>>> obj=a(i=4,j=7)
>>> obj
>>> import collections
>>> a=collections.namedtuple('a',['i','j'])
>>> obj=a(i=4,j=7)
>>> obj
A. a(i=4, j=7)
B. obj(i=4, j=7)
C. (4,7)
D. An exception is thrown
Answer: Option A
Join The Discussion