Open In App

Python-Quizzes | Python Dictionary Quiz | Question 7

Like Article
Like
Save
Share
Report

Question 7:Find the output of the following program:




a ={} 
a.fromkeys(['a', 'b', 'c', 'd'], 98
print (a) 


(A) Syntax error
(B) {‘a’:98, ‘b’:98, ‘c’:98, ‘d’:98}
(C) {‘a’:None, ‘b’:None, ‘c’:None.’d’:None}
(D) { }


Answer: (D)

Explanation: fromkeys() create a new dictionary with keys from the list given to it as an argument and set values of the key, the default value given in it as an argument.

Quiz of this Question


Last Updated : 17 Sep, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads