执行下面 Python 代码后,输出的结果是?( )
data = [('a', [1]), ('b', [2])] d = dict(data) d['a'].append(3) print(data[0][1])
[1]
[1, 3]
报错
('a', [1, 3])