MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following code? >>> 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» B. obj(i=4, j=7) | |