team1=[
{
'name':'乔丹',
'height':198
},
{
'name':'姚明',
'height':223
}
]
import json
team2=json.loads(json.dumps(team1)) #先序列化dumps后反序列化loads
team2[0]['name']='麦迪'
print(team1[0]['name'])
json深度拷贝
最新推荐文章于 2024-11-05 15:32:33 发布