python中元組的基礎操作

2021-10-10 08:38:25 字數 529 閱讀 6451

1、tuple_1=(1,2,3,「ewang」,「demo」) 建立乙個空的元組

2、tuple_2=() 使用tuple建立乙個元組並給元組賦值

3、mytuple1 =() [不加括號也可以]

注意:元組和列表是十分相近的容器型別,但是元組是不可以修改的。當處理一組物件時,這個組預設為元組型別。

2、通過索引更新

如:tuple_1=tuple_1[0],tuple_1[2],tuple_1[4]

print tuple_1

不能刪除乙個單獨的元組元素,可以將不需要的元素丟棄後重新組成乙個新的元組。可以採用切片的方式刪除。

如:mytuple = (『zhang』, 『wang』, 『li』,)

mytuple = mytuple[:1] + mytuple[2:]

del mytuple

1、元組的運算操作符有:+,*,in,not in,關係操作符(>,<,>=,etc), 邏輯操作符(and,or,not)

2、元組物件只有count和index方法。

Python中元組的基礎介紹及常用操作總結

目錄 python的元組與列表類似,不同之處在於元組的元素不能修改。元組使用小括號,列表使用方括號。元組建立很簡單,只需要在括號中新增元素,並使用逗號隔開即可。元組的格式 tup a b c d 元組可以使用下標索引來訪問元組中的值,下標索引從0開始 例如 tup a b c d print tup...

python中元組的簡介

t 1,2.3,true,star print t print type t 執行結果為 1,2.3,true,star t1 1,2,3 4 print t1 執行結果為 1,2,3,4 4 t2 hello print type t2 執行結果為 allowusers root westos r...

Python中元組的函式

定義乙個帶欄位名的元組 from collections import namedtuple user namedtuple user name age user user lisi male 12 print user user name lisi male age 12 fields 元組的屬性...