copy
将当前字典复制一个新的字典
用法
dict.copy() ->该函数无参数 返回一个一模一样的内存地址不同的字典
old_dict = {'name': 'xiaoming', 'age': 10}
new_dict = old_dict.copy()
print(id(new_dict) != id(old_dict))
结果
True
将当前字典复制一个新的字典
dict.copy() ->该函数无参数 返回一个一模一样的内存地址不同的字典
old_dict = {'name': 'xiaoming', 'age': 10}
new_dict = old_dict.copy()
print(id(new_dict) != id(old_dict))
结果
True