python添加列表元素的两种方法
方法一:append()方法:追加单个元素到列表的尾部
只接受一个元素,元素可以是任何数据类型,被追加的元素在列表中保持着原数据结构类型。
使用格式
列表名称.append(obj),obj为添加到列表末尾的元素。
使用实例
color1=['green','blue','pink','red','black'] color1.append('white') print(color1)
['green','blue','pink','red','black','white']
方法二:使用insert()方法,将一个元素插入到列表中的指定位置。
使用格式
列表名称.insert(index,obj)
使用参数
index是插入的索引位置;
obj是将要插入列表中的元素。
color=['green','blue','pink','red','black'] color.insert(2,'white') print(color)
['green','blue','white','pink','red','black']