Question 14:Find 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)
Explanation: A dictionary can hold any value such as an integer, string, list or even another dictionary holding key value pairs.
Quiz of this Question
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
17 Sep, 2020
Like Article
Save Article