[python] list.append()和list.extend()的区别

时间:2022-05-18 23:51:34

list.append(list1),是将list1作为一个数据项、一个元素,追加在list中

eg:

>>> list=['a','b','c']
>>> list.append(['d','e','f'])
>>> list
['a', 'b', 'c', ['d', 'e', 'f']]
>>> len(list)
4
>>> list[-1]
['d', 'e', 'f']

 

list.extend(list1),是将list1与list相连接

eg:

>>> list=['a','b','c']

>>> list
['a', 'b', 'c']
>>> list.extend(['d','e','f'])
>>> list
['a', 'b', 'c', 'd', 'e', 'f']
>>> len(list)
6
>>> list[-1]

’f‘

 

如果append和extend的参数都是一个元素的话,是没有区别的,

若参数是一个列表或者元组的话,则存在如下区别:

append是将它的参数视为element,作为一个整体添加上去的。

extend将它的参数视为list,extend的行为是把这两个list接到一起,

List里可以有任意的数据类型,所以,要分清这俩函数的区别。