元組tuple的方法
元組:
1、元組的定義
就是一個不可變的資料的集合,使用方式為()。
*當元組內元素只有一個時,元素末尾要新增,逗號,這樣元組的資料型別才是元組,否則為字串型別或者數字型別
例如:
tuple = ('d')
print(type(tuple))
<class 'str'> #元組的資料型別為字串型別,不是tuple
tuple = ('d',)
print(type(tuple))
<class 'tuple'>
練習題1:
tuple = (1,3,5,7,['a',3,5])
tuple[2]=4
Traceback (most recent call last):
File "D:/develop/pycharm/workspace/test/test_44444.py", line 239, in <module>
tuple[2]=6
TypeError: 'tuple' object does not support item assignment
2、元組中的元素不可更改
元組內的資料不可修改,但是元組中的list列表中的資料可以修改。
練習題2:
tuple = (1,3,5,7,['a',3,5])
tuple[4][0]=1
print(tuple)
[1, [9, 8, 7], 2, 4]
元組中的列表中的元素可以更改
3、tuple元組的方法
1、count方法:該元素出現的頻次
練習題3:
#count方法表示該元素出現的頻次
tuple = (1,4,6,8,1,8,8,8)
print(tuple.count(8))
4
2、index定位方法
練習題4:
tuple = ('a',3,8,5,3,5,'b','c','d')
print(tuple.index(3))
1 #元素3的位置索引為1
相關文章
- Python元組tuplePython
- Python tuple(元組)Python
- list和tuple元組的區別
- python之tuple元組,基礎篇Python
- python資料結構元組tuplePython資料結構
- Python資料型別(元組tuple)Python資料型別
- Python 選列表 list 還是元組 tuple 的思考Python
- 04_python——元組(tuple)、字串 、 bytes bytearrayPython字串
- python列表(list)和元組(tuple)詳解Python
- Python - 基礎資料型別 tuple 元組Python資料型別
- 從資料庫的角度談-元組(Tuple)和記錄(record)資料庫
- Python3之字串str、列表list、元組tuple的切片操作Python字串
- Python中元組tuple的作用以及tuple和list的轉換Python
- Python零基礎學習筆記(二十)——tuple元組Python筆記
- 列表和元組的方法
- 【TVM 教程】使用元組輸入(Tuple Inputs)進行計算和歸約
- 深入理解 Python 虛擬機器:元組(tuple)的實現原理及原始碼剖析Python虛擬機原始碼
- 元組、布林、集合的內建方法
- python元組有哪些獲取元素的方法Python
- js 方法(運算元組為主JS
- 怎麼用python中tuple相關方法?Python
- python-元組方法(tulpe)知識整理Python
- python基礎之序列型別的方法——列表&元組Python型別
- Python中的tuplePython
- python的元組Python
- Python中如何避免字典和元組的多重巢狀的方法Python巢狀
- 元組
- ES5和ES6新的運算元組的方法(常用)
- python元組的特點Python
- Python的元組()與字典{}Python
- Python的元組()與字典 { }Python
- Python 元組Python
- Python的List vs Tuple比較Python
- python中的list、tuple和dictionaryPython
- Python 的List 和tuple,Dict,SetPython
- python3 筆記13.列表元組的切片和支援的運算方法Python筆記
- 資料型別· 第1篇《元組和列表的效能分析、命名元組》資料型別
- 使用list和tuple