a = {} a['you'] = ['a','b'] a['me'] = ['c','d'] print(a)
输出结果:{'you': ['a', 'b'], 'me': ['c', 'd']}
print([2]+[3])
输出结果:[2, 3]