A Admin • 833K Points Coach Q. What is the output of `dict(a=1, b=2).items()`? (A) ['a', 'b'] (B) {'a': 1, 'b': 2} (C) dict_items([('a', 1), ('b', 2)]) (D) [('a', 1), ('b', 2)] Correct Answer - Option(C) Views: 16 Filed under category Python Hashtags: Python Dictionary Share Manage Tags
Discusssion
Login to discuss.