Python元組索引 擷取

2022-06-19 12:45:11 字數 948 閱讀 8120

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(tuple_1[-4])

#e

切片操作:

#

使用切片進行擷取列表元素

tuple_1 = (1,2,3,4,5,6,7,8,9,10)

print

(tuple_1[::])

#(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)

print(tuple_1[2:8])

#(3, 4, 5, 6, 7, 8)

print(tuple_1[2:8:3])

#(3, 6) , 不包含end

print(tuple_1[2::-1])

#(3, 2, 1)

print(tuple_1[8:1:-1])

#(9, 8, 7, 6, 5, 4, 3)

print(tuple_1[8:1:-2])

#(9, 7, 5, 3)

print(tuple_1[-1:-5:-1])

#(10, 9, 8, 7)

2020-02-09

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

分片格式如下 tuple m n m n可以是零 正整數或負整數。但是用python3.7碼的時候發現 如果m和n同時是正數或者同時是負數且m小於n時,切得片才是正確的 如果不滿足上述任何乙個字眼,切得片為空,如下 print tuple tuple print tuple 1 3 tuple 1 ...

python 元組, 元組應用

元組可以存放不同型別的資料 元組中的資料不能被修改 如果元組中有列表,可以修改列表中的資料 語法 變數 資料1,資料2,資料3,型別是 my tuple isaac 18 3.14 true print my tuple print type my tuple 控制台輸出 isaac 18 3.14...

python元組型別說法 Python 元組型別

一 元組簡介 1 元組用中括號 來定義,比如 tuple 1,2,3,4 2 元組中的元素索引值從 0 開始,元組支援索引和切片操作,且元組元素支援多種型別 3 數字 字串 元組都是不可變型別,這意味著一旦乙個物件被定義了,它的值就不能再被更新,除非重新建立乙個新的物件 二 元組的基本操作 1 建立...