深浅拷贝

import copy
dic={
    "cpu":[80,],
    "mem":[80,],
    "disk":[80,]
}
print('before',dic)
new_dic=copy.deepcopy(dic)
dic["cpu"][0]=50
print(new_dic)
print(dic)

 

 

 

import copy
dic={
    "cpu":[80,],
    "mem":[80,],
    "disk":[80,]
}
print('before',dic)
new_dic=copy.copy(dic)
dic["cpu"][0]=50
print(new_dic)
print(dic)

posted @ 2017-08-23 09:56  pop_PY  阅读(87)  评论(0编辑  收藏  举报