認識Python 元組
目錄
1、Python 元組
Python的元組與列表類似,不同之處在於元組的元素不能修改。
元組使用小括號,列表使用方括號。
元組建立很簡單,只需要在括號中新增元素,並使用逗號隔開即可。
如下例項:
tup1 = ('physics', 'chemistry', 1997, 2000)
tup2 = (1, 2, 3, 4, 5 )
tup3 = "a", "b", "c", "d"
建立空元組
tup1 = ()
元組中只包含一個元素時,需要在元素後面新增逗號
tup1 = (50,)
元組與字串類似,下標索引從0開始,可以進行擷取,組合等。
2、訪問元組
元組可以使用下標索引來訪問元組中的值,如下例項
tup1 = ('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)
3、修改元組
元組中的元素值是不允許修改的,但我們可以對元組進行連線組合,如下例項:
tup1 = (12, 34.56)
tup2 = ('abc', 'xyz')
# 以下修改元組元素操作是非法的。
# tup1[0] = 100
# 建立一個新的元組
tup3 = tup1 + tup2
print tup3
以上例項輸出結果:
(12, 34.56, 'abc', 'xyz')
4、刪除元組
元組中的元素值是不允許刪除的,但我們可以使用del語句來刪除整個元組,如下例項:
tup = ('physics', 'chemistry', 1997, 2000)
print tup
del tup
print "After deleting tup : "
print tup
以上例項元組被刪除後,輸出變數會有異常資訊,輸出如下所示:
('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
5、元組運算子
與字串一樣,元組之間可以使用 + 號和 * 號進行運算。這就意味著他們可以組合和複製,運算後會生成一個新的元組
6、元組索引,擷取
因為元組也是一個序列,所以我們可以訪問元組中的指定位置的元素,也可以擷取索引中的一段元素,如下所示:
元組:
L = ('spam', 'Spam', 'SPAM!')
7、無關閉分隔符
任意無符號的物件,以逗號隔開,預設為元組,如下例項:
8、例項(Python 2.0+)
print 'abc', -4.24e93, 18+6.6j, 'xyz'
x, y = 1, 2
print "Value of x , y : ", x,y
以上例項執行結果:
abc -4.24e+93 (18+6.6j) xyz
Value of x , y : 1 2
9、元組內建函式
Python元組包含了以下內建函式
相關文章
- python中一些元組知識Python
- python-元組方法(tulpe)知識整理Python
- Python基礎知識七 元組&字典&集合Python
- Python 元組Python
- Python tuple(元組)Python
- python的元組Python
- Python元組tuplePython
- python-元組Python
- Python基礎總結之第六天開始【認識List:列表】【認識Tuple:元組】【還有他們基本的操作】(新手可相互督促)Python
- Python元組詳解Python
- python元組和列表Python
- Python基礎_元組Python
- 06_Python 元組Python
- python--元組tuplePython
- Python 建立元組tuplePython
- Python速通(元組)Python
- 認識交換機組網結構
- 第六組-圖形的認識
- Python列表、元組、字典使用Python
- Python 基礎 3 - 元組Python
- Python的元組()與字典{}Python
- Python 學習之元組Python
- python元組的特點Python
- python命名元組如何理解Python
- Python的元組()與字典 { }Python
- Python基礎(05):元組Python
- 初學Python(五)——元組Python
- python列表元組的操作Python
- Python的元組和列表Python
- python學習:元組tuplePython
- 我認識的python(4)Python
- 我認識的python(5)Python
- 我認識的python(3)Python
- 我認識的python(1)Python
- 我認識的python(2)Python
- python元組與字典簡介Python
- python元組如何打包和解包Python
- python_列表——元組——字典——集合Python