六大變量——列表
創(chuàng)建列表
lst=[] #以逗號(hào)分割各項(xiàng),可以是數(shù)值、字符串等
增
A用list.appand()在末尾添加
list.append('Baidu')
B用list.insert(x,y)#x為對(duì)象y需要插入的索引位置。y要插入列表中的對(duì)象。
list.insert(?3,?2009)
刪
刪除元素
del list[2]
刪除整個(gè)列表
del list
改
用索引
list = ['Google', 'Runoob', 1997, 2000]
list[2] = 2001
查
用索引、中括號(hào)方式(左閉右開)
list = ['red', 'green', 'blue', 'yellow', 'white', 'black']
print( list[0] )
print(list[0:4])
標(biāo)簽: