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
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