這篇文章主要為大家展示了“python切片符號怎么用”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“python切片符號怎么用”這篇文章吧。
成都創(chuàng)新互聯(lián)主營蕪湖縣網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,成都APP應(yīng)用開發(fā),蕪湖縣h5成都微信小程序搭建,蕪湖縣網(wǎng)站營銷推廣歡迎蕪湖縣等地區(qū)企業(yè)咨詢
a[start:stop] # items start through stop-1 a[start:] # items start through the rest of the array a[:stop] # items from the beginning through stop-1 a[:] # a copy of the whole array
還有一個step值,可以與上述任何一個一起使用:
a[start:stop:step] # start through not past stop, by step
要記住的關(guān)鍵點(diǎn)是該:
1、stop值表示不在所選切片中的第一個值。之間的差stop和start是選擇的元素的數(shù)量(如果step是1,默認(rèn)值)。
2、startorstop可能是一個負(fù)數(shù),這意味著它從數(shù)組的末尾而不是開頭開始計(jì)數(shù)。
所以:
a[-1] # last item in the array a[-2:] # last two items in the array a[:-2] # everything except the last two items
同樣,step可能是負(fù)數(shù):
a[::-1] # all items in the array, reversed a[1::-1] # the first two items, reversed a[:-3:-1] # the last two items, reversed a[-3::-1] # everything except the last two items, reversed
如果項(xiàng)目少于您的要求,Python 對程序員是友好的。例如,如果你請求a[:-2]并且a只包含一個元素,你會得到一個空列表而不是錯誤。有時您更喜歡錯誤,因此您必須意識到這可能會發(fā)生。
以上是“python切片符號怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!