浅copy
一 b = a.copy
二 import copy
a = copy.copy(b)
深copy
import copy
a = copy.deepcopy(b)
注意:python文件名不要命名为copy.py,否则import copy时是导入的自己而不是系统的copy模块