更多Python免費課程:阿里雲大學——開發者課堂
Python的元組與列表相似,不一樣之處在於元組的元素不能修改。
元組使用小括號,列表使用方括號。
元組建立很簡單,只須要在括號中添加元素,並使用逗號隔開便可。
以下實例:python
tup1 = ('physics', 'chemistry', 1997, 2000);tup2 = (1, 2, 3, 4, 5 );tup3 = "a", "b", "c", "d";
tup1 = ();
元組中只包含一個元素時,須要在元素後面添加逗號阿里雲
tup1 = (50,);
元組與字符串相似,下標索引從0開始,能夠進行截取,組合等。code
元組能夠使用下標索引來訪問元組中的值,以下實例:索引
#!/usr/bin/pythontup1 = ('physics', 'chemistry', 1997, 2000);tup2 = (1, 2, 3, 4, 5, 6, 7 );print "tup1[0]: ", tup1[0]print "tup2[1:5]: ", tup2[1:5]
以上實例輸出結果:開發
tup1[0]: physics tup2[1:5]: (2, 3, 4, 5)
元組中的元素值是不容許修改的,但咱們能夠對元組進行鏈接組合,以下實例:字符串
#!/usr/bin/python# -*- coding: UTF-8 -*-tup1 = (12, 34.56);tup2 = ('abc', 'xyz');# 如下修改元組元素操做是非法的。# tup1[0] = 100;# 建立一個新的元組tup3 = tup1 + tup2;print tup3;
以上實例輸出結果:get
(12, 34.56, 'abc', 'xyz')
元組中的元素值是不容許刪除的,但咱們能夠使用del語句來刪除整個元組,以下實例:ast
#!/usr/bin/pythontup = ('physics', 'chemistry', 1997, 2000);print tup;del tup;print "After deleting tup : "print tup;
以上實例元組被刪除後,輸出變量會有異常信息,輸出以下所示:test
('physics', 'chemistry', 1997, 2000)After deleting tup :Traceback (most recent call last): File "test.py", line 9, in <module> print tup;NameError: name 'tup' is not defined
更多Python免費課程:阿里雲大學——開發者課堂變量