python中list的操#python创建列表的时候,会以堆栈的形式存放数据,从右向左往堆栈中存放数据
movies=["The holy Grail","The life of brain","The meaning of life"]
movies=[]
movies=list() #创建一个空的列表
#len()表示长度
print(len(movies))
#python append在列表的末尾添加一个元素
movies.append("Gillain")
#python extend在末尾添加另外一个列表
movies.extend(["Clesse","Gailun"])
#python 把最后一个元素删除
last=movies.pop()
#python remove 删除指定元素
movies.remove("The life of brain")
#python insert(index,"aaa")在指定的索引位置之前添加一个元素
movies.insert(1,"the life")
#赋值可以替换元素
movies[0]="the holy"
主要是
append("aaa") 在末尾添加一个元素
extend(["aaa","bbb"]) 在列表末尾添加另外一个列表
pop() 删除最后一个元素
remove("aaa") 删除指定的元素
insert(index,"aaa") 在指定的索引之前,添加一个元素
列表的索引正序是从0开始的,逆序是从-1开始的
for value in list:
print(value)
这个打印的是列表中的值