python元組索引 python3元組分片及索引

2021-10-11 11:53:41 字數 657 閱讀 4575

分片格式如下

tuple[m:n]

m、n可以是零、正整數或負整數。

但是用python3.7碼的時候發現:

如果m和n同時是正數或者同時是負數且m小於n時,切得片才是正確的

如果不滿足上述任何乙個字眼,切得片為空,**如下:

print ("tuple=",tuple)

print("tuple[1:3]=",tuple[1:3])

print("tuple[3:1]=",tuple[3:1])

print("tuple[0:-2]=",tuple[0:-2])

print("tuple[-2:0]=",tuple[-2:0])

print("tuple[-1:-3]=",tuple[-1:-3])

print("tuple[-3:-1]=",tuple[-3:-1])

print("tuple[-1:1]=",tuple[-1:1])

結果如下:

tuple[1:3]= ('banana', 'prape')

tuple[3:1]= ()

tuple[-2:0]= ()

tuple[-1:-3]= ()

tuple[-3:-1]= ('banana', 'prape')

tuple[-1:1]= ()

Python元組索引 擷取

python元組索引 擷取 索引下標 tuple 1 a b c d e f g h print tuple 1 0 a print tuple 1 3 d print tuple 1 7 h 當索引下標為負數時,1表示最右端元素,從右向左依次遞減 print tuple 1 1 h print t...

元組 datawhale組隊學習python基礎

元組 定義語法為 元素1,元素2,元素n 與列表不同,元組是 列表是。t1 1 10.31 python t2 1,10.31 python print t1,type t1 1,10.31,python print t2,type t2 1,10.31,python tuple1 1 2,3 4,...

pytho序列,字串,元組 學習筆記

python string.zfill 方法 函式 墊零左側的字串,以填補寬度。python 序列操作 seq ind 獲得下標為 ind 的元素 seq ind1 ind2 獲得下標從 ind1 到 ind2 間的元素集合 seq expr 序列重複 expr 次 seq1 seq2 連線序列 s...