ICode9

精准搜索请尝试: 精确搜索
  • python菜鸟学习: 3.浅copy使用场景2022-08-12 16:00:20

    # -*- coding: utf-8 -*-import copy# 浅copy# 使用场景,比如A,B夫妻共有一个银行账户,存取马宁的数据username = ["name", ["saving", 1000]]zhangsan = copy.copy(username)zhangfuren = copy.copy(username)print(zhangfuren)print(zhangsan)zhangfuren[1][1] = "20000&qu

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有