Python 练习实例7

题目7:
将一个列表的数据复制到另一个列表中。

lst1 = range(1, 8)
lst2 = lst1[:]
print(lst2)

需要数据结构复制,而不是简单的引用lst2=lst1

你可能感兴趣的:(python,实例)