python list列表函数

python list.append()函数用于在列表的末尾添加一个元素。

语法

它有两种类型的语法,如下:
list对象.append(obj) 
list.append(list对象, obj) 

参数

  • obj: 指定要添加的元素。

返回值

没有返回值,改变list的内部元素结构。

程序示例

#!/usr/bin/python
# coding=utf-8
list1 = ['a', 'b', 'c', 'd' ]
list1.append('e')
print(list1)
#没有返回值所以返回None
print(list1.append('e'))

程序运行结果:

['a', 'b', 'c', 'd', 'e']
None