Q.

What is the output of the following program?
temp = dict()
temp['key1'] = {'key1' : 44, 'key2' : 566}
temp['key2'] = [1, 2, 3, 4]
for (key, values) in temp.items():
print(values, end = "")

A. Compilation error
B. {„key1‟: 44, „key2‟: 566}[1, 2, 3, 4]
C. Runtime error
D. None of the above
Answer» B. {„key1‟: 44, „key2‟: 566}[1, 2, 3, 4]
2.5k
0
Do you find this helpful?
19

View all MCQs in

Python Programming

Discussion

No comments yet

Related MCQs