python學習:元組tuple
1 元組定義:
- 說明:元組不可以修改,一般用圓括號括起來
- 例子:
#一般元組
>>> 1,2,3
(1, 2, 3)
>>> (1,2,3)
(1, 2, 3)
#一個元素的元組
>>> (1,)
(1,)
>>> 2,
(2,)
#空元組
>>> ()
()
>>>
#元組的乘法
>>> 4* (2,)
(2, 2, 2, 2)
>>>
2 tuple函式
- 說明:以一個序列為引數,將其轉換為元組;
- 例子:
>>> tuple("CONSTANT")
('C', 'O', 'N', 'S', 'T', 'A', 'N', 'T')
>>> tuple(list("CONST"))
('C', 'O', 'N', 'S', 'T')
>>>
3 元組的意義:
- 元組可以在對映中當作鍵使用;
- 元組作為很多內建函式和方法的返回值存在。
相關文章
- Python tuple(元組)Python
- Python元組tuplePython
- python--元組tuplePython
- Python 建立元組tuplePython
- Python零基礎學習筆記(二十)——tuple元組Python筆記
- python list(列表)和tuple(元組)Python
- Swift元組(Tuple)Swift
- Python資料型別(元組tuple)Python資料型別
- python之tuple元組,基礎篇Python
- python資料結構元組tuplePython資料結構
- python列表(list)和元組(tuple)詳解Python
- python基礎之列表list元組tuplePython
- Python 學習之元組Python
- Python - 基礎資料型別 tuple 元組Python資料型別
- Python 學習之元組列表Python
- .NET Framework 4.0之Tuple(元組)Framework
- 04_python——元組(tuple)、字串 、 bytes bytearrayPython字串
- Python 選列表 list 還是元組 tuple 的思考Python
- list和tuple元組的區別
- Python學習筆記8——列表、字典、元組Python筆記
- 學習python的資料型別——元組Python資料型別
- Python3之字串str、列表list、元組tuple的切片操作Python字串
- 初學Python(五)——元組Python
- Python中列表、元組、字典有何區別?Python學習!Python
- python學習筆記:第4天 列表和元組Python筆記
- Python中元組tuple的作用以及tuple和list的轉換Python
- 小白學python系列-(5) tuplePython
- Python中tuple和list的區別?Python基礎學習!Python
- Python 元組Python
- Scala學習(四)---對映和元組
- 草根學Python(三)List 和 TuplePython
- 深入理解 Python 虛擬機器:元組(tuple)的實現原理及原始碼剖析Python虛擬機原始碼
- 從資料庫的角度談-元組(Tuple)和記錄(record)資料庫
- python的元組Python
- python-元組Python
- Python 元組,不可變的列表,滾雪球學 PythonPython
- Python 入門學習 -----變數及基礎型別(元組,列表,字典,集合)Python變數型別
- Python元組詳解Python