Open In App

Python-Quizzes | Python Dictionary Quiz | Question 7

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

Article Tags :