- A dict_items(4, 8, 16, 32)
- B dict_items([4, 8, 16, 32])
- C dict_items[0, 1, 2, 3]
- D dict_items([(0, 4), (1, 8), (2, 16), (3, 32)])
Python Programming Language MCQ Python Dictionary MCQ
⚠ Report ✓ Question Verified Copy Link
x = {0:4, 1:8, 2:16, 3:32}
print(x.items())
Learn More MCQ Questions from Python Programming Language MCQ Python Dictionary MCQ