声明/定义
list=[0,12,hsh,de,45]
在python中,列表的声明用[]
元素索引
正数索引从前往后索引,负数索引从后往前索引
增加元素
list.append("hello")
在list变量后面添加hello元素
list.insert(2,"world")
,在下标为2处增加元素,即list[2]="world"
list.extend("hello","china")
,列表后方增加多个元素
list +=["hi"]
,在后方增加hi元素
list = list +["beautiful","girl"]
,在后方增加beautiful,girl元素
删除元素
list.remove("hello")
,删除第一个出现的hello元素
list.pop()
删除列表最后一个元素,并返回删除元素的值