python初學一(tuple的處理方式)

2021-08-30 19:41:39 字數 748 閱讀 3453

1、元組是有序不可變的,可以包含可變的元素(可變元素可以修改內部),也可以通過list()轉化為list來修改。

2、tuple可以索引、切片。

3、元組只有乙個元素的時候要加  ,    否則資料型別會變為 str

1、del刪除元組,類似列表 ,不可以刪除乙個元素,可以刪除整個元組。元組不能用clear

2、元組 可以通過list()轉化為list來修改元素。

tuple1 = (1,2,3)

list1 = list(tuple1)

print(tuple1) ----------- 原資料不變 結果:(1, 2, 3)

print(list1) ----------- 返回值是修改後的資料 結果:[1, 2, 3]

3、元組可以切片與索引:

------ 第三節

1、系統函式

2、元組函式:

Python初學list與tuple教程

python 初學list和tuple 本節知識點 list 和tuple區別 list 的操作方法 tuple 的定義及操作方法,可變的元組 1,list 和tuple區別 list 是一種有序的集合,可以隨時新增和刪除其中的某個元素,可以排序 例子 1 定義乙個 list 盡量不用關鍵字定義,否...

Python 中的元組(tuple)

tuple 是一種序列型別的資料,跟 list str 類似。tuple 中的元素不能更改,這點跟 list不同,跟 str 類似 tuple 的元素可以是任何型別的資料,這點上跟 list 相同,但不同於 str。因此,tuple 融合了部分 list 和部分 str 的屬性。t 1,23 123...

Python中的元組 Tuple

元組一旦建立就不可更改 元組的格式 tuple tuple1 1 tuple2 1,tuple3 1,2,3,4 print tuple print type tuple print 33 print tuple1 print type tuple1 print 33 print tuple2 pr...