1. 程式人生 > >元組tuple

元組tuple

gif style hid taobao one aps seq lin lis

元組與列表類似,不同之處在於元組的元素不能修改

元組創建:在括號中添加元素,使用逗號隔開。

註意:元組中只包含一個元素時,需要在元素後面添加逗號

tup1 = (50,);
1.訪問元組
方法同列表
2.刪除元組
元組中的元素值是不允許刪除的,但我們可以使用del語句來刪除整個元組
實例:
技術分享
tup = (Google, Runoob, 1997, 2000)

print (tup)
del tup;
print ("刪除後的元組 tup : ")
print (tup)
View Code

結果:

技術分享
刪除後的元組 tup : 
Traceback (most recent call last):
  File 
"test.py", line 8, in <module> print (tup) NameError: name tup is not defined
View Code

3.元組的運算符

和列表相同

4.元組的索引,截取

和列表相同

5.內置函數

和列表相同

tuple(seq)

技術分享
list1= [Google, Taobao, Runoob, Baidu]
tuple1=tuple(list1)
print("tuple1")
View Code

結果:

技術分享
(Google, Taobao, Runoob, Baidu
)
View Code

元組tuple