What will be the output of the following code?
d = {'a': 5, 'b': 10} d['a'] = 15 print(d)
{'a': 5, 'b': 10}
{'a': 15, 'b': 10}
Error
{'a': 15}
This question is part of this quiz :