python中的元組

2021-10-01 07:08:08 字數 1353 閱讀 6819

元組:是不可變資料型別,沒有增刪改,可以儲存任意資料型別

列表:可以儲存任意資料型別

元組的定義

# 定義乙個元組

t =(1,1.2,true,'redhat'

)print(t,type(t))

# 如果元組裡面包含可變資料型別,可以間接的修改元組內容

t1 =

([1,2,3],4)

print(t1)

#列印結果

(1, 1.2, true, 'redhat'

)>

([1, 2, 3, 5], 4)

# 元組如果只有乙個元素,元素後面一定要加逗號,否則資料型別是不確定的

t5 =

(true,)

print(t5,type(t5))

常用方法

t =

(1,1.2,true,'westos'

)print(t.index(1.2))

#找出索引位置

print(t.count(

'westos'

))#統計元素出現的次數

#列印結果

11

# 切片

print(t[:-1]

)print(t[::-1]

)# 連線

print(t + (1,3,4))

# 不同資料型別之間是不能連線的

# print(t + [1,2,3])

# print(t + 'westos')

# 重複

print(t * 3)

# for迴圈

for i in t:

print(i)

# 成員操作符

print(1 in t)

print(1 not in t)

#列印結果

11.2

(1, 1.2, true, 'redhat')(

'redhat', 'redhat', true, 1.2, 1)

(1, 1.2, true, 'redhat', 'redhat', 1, 3, 4)

(1, 1.2, true, 'redhat', 'redhat', 1, 1.2, true, 'redhat', 'redhat', 1, 1.2, true, 'redhat', 'redhat')1

1.2true

redhat

redhat

true

false

python中的元組 Python中的元組

一 元組 tuple 元組基本上就像乙個不可改變的列表。與列表一樣支援任意型別的元素 支援巢狀以及常見的序列操作。元組也有一些方法,可用dir tuple 檢視。元組編寫在圓括號中。info 林間 man 1991,7,13,true 支援不同型別 info 林間 man 1991,7,13 tru...

python中的元組

1 元組 列表中通常儲存相同型別的資料,而元組中通常儲存不同型別的資料 tuple 元組 與列表相似,不同之處在於元組的元素不能修改 元組表示多個元素組成的序列 元組在python開發中,有特定的應用場景 用於儲存一串資訊,資料之間使用,分隔 元組用 定義 2 元組的特點 t2 hello 要是沒有...

Python中的元組

元組是一種固定長度 不可變的python物件序列。1.建立 建立元組最簡單的方法就是用逗號分隔序列值。tup 4,5,6 tup 4,5,6 當你通過更複雜的表示式來定義元組時,通常需要用括號將值包起來.tup 2 4,5,6 7,8 tup 2 4,5,6 7,8 以上是生成了元素是元組的元組。2...