Find the output of the following program:
a ={}
a.fromkeys(['a', 'b', 'c', 'd'], 98)
print (a)
Syntax error
{‘a’:98, ‘b’:98, ‘c’:98, ‘d’:98}
{‘a’:None, ‘b’:None, ‘c’:None.’d’:None}
{ }
This question is part of this quiz :
Python Dictionary Quiz