Examlex

Solved

What Is the Output of the Following Program

question 27

Multiple Choice

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 = "")


Definitions:

Related Questions