1、Python的列表类似于其他语言中的数组,但要强大得多。其中一个方面是列表没有固定类型的限制。例如,在下面的例子中接触到的列表包含三个完全不同类型的对象(一个整数、一个字符串和一个浮点)。
>>>L[0]#Indexingbyposition 123 >>>L[:-1]#Slicingalistreturnsanewlist [123,'spam'] >>>L+[4,5,6]#Concatenationmakesanewlisttoo [123,'spam',1.23,4,5,6] >>>L#We'renotchangingtheoriginallist [123,'spam',1.23] 123456789101112131415161718192021
2、列表没有固定的大小,即可以根据需要增加或减小列表的大小来响应其特定的操作。
>>>L.append('NI')#Growing:addobjectatendoflist >>>L [123,'spam',1.23,'NI'] >>>L.pop(2)#Shrinking:deleteaniteminthemiddle 1.23 >>>L#"delL[2]"deletesfromalist [123,'spam','NI'] 12345678910111213
以上是python列表的优势探索,希望对大家有所帮助。更多Python学习指南:python基础教程
本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。