Python 笔记Python炼气期基础Python炼气期基础练习2.7 列表复制2.7 列表复制题目: 将一个列表的数据复制到另一个列表中。 程序分析: 使用列表[:] 程序源代码 a = [1, 2, 3]b = a[:]print (b) 参考资料: 菜鸟教程 https://www.runoob.com/python/python-100-examples.html 知乎 https://zhuanlan.zhihu.com/p/115198225