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