Python3 列表list合并的4种方法
作者:互联网
方法1: 直接使用"+"号合并列表
aList
=
[
1
,
2
,
3
]
bList
=
[
'www'
,
'pythontab.com'
]
cList
=
aList
+
bList
[1, 2, 3,
'www'
,
'pythontab.com'
]
方法2: 使用extend方法
aList
=
[
1
,
2
,
3
]
bList
=
[
'www'
,
'pythontab.com'
]
aList.extend(bList)
[1, 2, 3,
'www'
,
'pythontab.com'
]
方法3: 使用切片
aList
=
[
1
,
2
,
3
]
bList
=
[
'www'
,
'pythontab.com'
]
aList[
len
(aList):
len
(aList)]
=
bList
[1, 2, 3,
'www'
,
'pythontab.com'
]
注:len(aList)代表要将bList插入aList中的位置
方法4: 使用append方法
aList
=
[
1
,
2
,
3
]
bList
=
[
'www'
,
'pythontab.com'
]
aList.append(bList)
[1, 2, 3, [
'www'
,
'pythontab.com'
]]
标签:www,list,aList,len,列表,bList,pythontab,com,Python3 来源: https://www.cnblogs.com/yanhuaqiang/p/10990142.html