python元組的特點
1、元組可以儲存多個資料,元組中的資料不能修改。
儘管元組中的內容無法改變,但是元組可以透過切片的方式切斷來增加元組的長度。
tuple1=(1,2,3,4,5) tuple1=tuple1[:1]+(0,)+tuple1[1:] print(tuple1) (1, 0, 2, 3, 4, 5) #輸出
2、定義元組使用小括號,逗號分隔每個資料,資料可以是不同的資料型別。
t1 = (10, 20, 30) # 多資料元組 t2 = (10,) # 單資料元組(後面必須要有逗號) t3 = (10) # 單資料元組不加逗號,資料型別為單資料型別而不是元組型別 print(type(t1), type(t2), type(t3))
以上就是python元組的特點,希望對大家有所幫助。更多Python學習指路:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2249/viewspace-2828591/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python 元組與列表的異同點 1125Python
- python的元組Python
- Python列表及元組的相同點與不同點介紹Python
- Python 元組Python
- Python語言的特點有哪些?九大特點介紹!Python
- Python的元組()與字典{}Python
- Python的元組()與字典 { }Python
- Python元組tuplePython
- Python tuple(元組)Python
- python-元組Python
- Python語言的特點有哪些?Python
- python元組和列表Python
- Python速通(元組)Python
- Python元組詳解Python
- 認識Python 元組Python
- 06_Python 元組Python
- Python基礎_元組Python
- python生成器函式的特點Python函式
- Python語言的特點技巧有哪些?Python
- Python元組和字典的拆包Python
- Python集合有什麼特點Python
- python列表有什麼特點Python
- Python 元組,不可變的列表,滾雪球學 PythonPython
- python的五個特點,你知道幾個?Python
- Python 學習之元組Python
- Python 基礎 3 - 元組Python
- Python列表、元組、字典使用Python
- Python基礎(05):元組Python
- python命名元組如何理解Python
- Python有哪些特點?學Python需要多少錢?Python
- 3-python 元組 字典 集合的操作Python
- python如何返回元組,列表或字典的?Python
- python之對元組的初步瞭解Python
- python如何訪問元組中的元素Python
- python_列表——元組——字典——集合Python
- Python 學習之元組列表Python
- Python之列表&元組小練Python
- python元組與字典簡介Python