2013年9月23日 星期一

python copy dictionary

dd = {'a': 1, 'b': 2}
aa = dd
aa['c'] = 3
print dd
bb = dd.copy()
bb['d'] = 4
print dd

沒有留言:

張貼留言