Python3 元組(Tuple)
Python3 元組(Tuple)
Python 的元組與列表類似,不同之處在于元組的元素不能修改。
元組也是 Python 中最基本的數(shù)據(jù)結(jié)構(gòu)之一。元組按順序保存元素,所有的元素占用一塊連續(xù)的內(nèi)存,每個元素都有自己的索引。
1. 元組的定義
元組使用小括號 ( ),列表使用方括號 [ ]。
元組創(chuàng)建很簡單,只需要在括號中添加元素,并使用逗號隔開即可。
Python3 范例
>>> tup1 = ('Google', 'CodeBaoku', 1997, 2000)
>>> tup2 = (1, 2, 3, 4, 5 )
>>> tup3 = "a", "b", "c", "d" ? # ?不需要括號也可以
>>> type(tup3)
<class 'tuple'>
>>> tup2 = (1, 2, 3, 4, 5 )
>>> tup3 = "a", "b", "c", "d" ? # ?不需要括號也可以
>>> type(tup3)
<class 'tuple'>
相關(guān)文章
- Python 排序算法
- Python 圖算法
- Python3 教程
- Python3 作用域
- Python floor() 函數(shù)
- Python os.access() 方法
- Python os.dup() 方法
- Python os.openpty() 方法
- Python os.pipe() 方法
- Python os.remove() 方法
- Python os.statvfs() 方法
- Python os.tcgetpgrp() 方法
- Python encode()方法
- Python istitle()方法
- Python List count()方法
- Python List extend()方法
- Python List insert()方法
- Python List remove()方法
- Python time altzone()方法
- Python time gmtime()方法