Python如何复制列表

By 刘志军 , 2020-06-04, 分类: qa

python

python中复制一个列表有多种方法

第1种:使用切片

>>> list1 = [1,2,3]
>>> list2 = list1[::]
>>> list2
[1, 2, 3]

第2种:使用list构造函数

>>> list3 = list(list1)
>>> list3
[1, 2, 3]

第3种:使用copy方法

import copy
>>> list4 = copy.copy(list1)
>>> list4
[1, 2, 3]

第4种:使用deepcopy方法

import copy
>>> list5 = copy.deepcopy(list1)
>>> list5
[1, 2, 3]

关注公众号「Python之禅」,回复「1024」免费获取Python资源

python之禅

猜你喜欢

2024-03-04
Python中的 if __name__ == '__main__' 是什么?
2024-03-04
用 Python 破解隔壁老王家的 Wi-Fi 密码,刺激!
2023-06-12
Python3.12新特性
2023-04-17
Python虚拟环境使用
2023-04-15
如何删除macOS系统默认的Python2.7并替换成最新版python3.11
2022-12-09
python 中return和yield有什么区别
2022-08-17
如何利用多态干掉 if else 语句
2022-07-22
10个python初学者常犯的错误
2022-06-10
flask-siwadoc 支持openapi 分组功能
2022-06-10
在Python应用中Telegram 机器人搭建消息提醒