Skip to main content

2.7 列表复制

题目

  • 将一个列表的数据复制到另一个列表中。

程序分析

  • 使用列表[:]

程序源代码

a = [1, 2, 3]
b = a[:]
print (b)

参考资料: