pycharm的list中copy的应用

#拷贝的意思
li = [11,22,33,44]
v = li.copy()
print(v)
#输出结果 [11,22,33,44]
#浅拷贝
原文地址:https://www.cnblogs.com/sucanji/p/10751978.html