下面Python代码执行后,输出的结果是?
dict_a = {'a': 1, 'b': 2, 'c': 3} dict_b = {'b': 4, 'd': 5} dict_a.update(dict_b) print(dict_a['b'])
2
4
5
报错