python3 练习题100例 (七)

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

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

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

__author__ = 'Fan Lijun'

lst1 = [1, 2, 3, 4, 'abcd']
lst2 = []
#1遍历列表法
for i in lst1:
    lst2.append(i)
#2切片
lst3 = lst1[:]
#3内置函数
lst4 = lst1.copy()
print(lst2, lst3, lst4)

 

你可能感兴趣的:(python3)