首页 > python杂谈 >
>>> a = [0]>>> b = {'1':a, '2':a}>>> b{'1': [0], '2': [0]}>>> b['1'][0]=1>>> b{'1': [1], '2': [1]}>>>
Posted on 2014-04-18 星期五