方法 | 解釋 | 列表 | 元組 |
s.__add__(s2) | s + s2,拼接 | √ | √ |
s.__iadd__(s2) | s += s2,就地拼接 | √ | |
s.append(e) | 在後面增加一個新元素e | √ | |
s.clear() | 刪除所有元素 | √ | |
s.__contains__(e) | 判斷s是否包含元素e | √ | √ |
s.copy() | 複製,淺複製 | √ | |
s.count(e) | 統計e在s中出現的次數 | √ | √ |
s.__delitem__(i) | 刪除位於i的元素 | √ | |
s.extend(t) | 在可跌宕物件後面增加s | √ | |
s.__getitem__(i) | 返回p位置的元素 | √ | √ |
s.index(e) | 查詢e,並返回e第一次出現的位置索引 | √ | √ |
s.insert(p,e) | 在索引為p的地方插入元素e | √ | |
s.__len__() | 與len(s)一致,返回s中元素的數量 | √ | √ |
s.__mul__(n) | sxn,s重複n次 | √ | √ |
s.pop([i]) | 中見不加[i]刪除最後一個元素,加上[i]刪除索引為i的元素 | √ | |
s.remove(e) | 刪除s中第一個e元素 | √ | |
s.reverse() | 將s中的所有元素進行倒序排列 | √ | |
s.__setitem__(p,e) | 與s[p]=e一致,將p位置的元素設定為e,之前的p位置元素被替代 | √ |
列表和元組的方法
相關文章
- 列表和元組
- python元組和列表Python
- 013:列表和元組的應用
- 列表與元組
- python基礎之序列型別的方法——列表&元組Python型別
- python列表(list)和元組(tuple)詳解Python
- 資料型別· 第1篇《元組和列表的效能分析、命名元組》資料型別
- python3 筆記13.列表元組的切片和支援的運算方法Python筆記
- python中的列表和元組有什麼區別Python
- Python列表、元組、字典使用Python
- Python元組、列表、集合及列表去重操作Python
- python如何返回元組,列表或字典的?Python
- python學習筆記:第4天 列表和元組Python筆記
- 2.列表_元組_字典_集合
- Python之列表&元組小練Python
- python list列表基礎(元組)Python
- python_列表——元組——字典——集合Python
- Python 學習之元組列表Python
- 元組tuple的方法
- python 元組與列表的異同點 1125Python
- python資料型別 列表+元組Python資料型別
- python 元組,列表 迴圈遍歷Python
- Python 選列表 list 還是元組 tuple 的思考Python
- Python 元組,不可變的列表,滾雪球學 PythonPython
- Python之列表與元組的區別詳解Python
- 課時13:元組:戴上了枷鎖的列表
- 三、python的資料型別 列表、元組、字典Python資料型別
- Py知識點筆記(列表、元組和字典).Day01筆記
- 從零開始學Python:第十三課-列表和元組的應用Python
- Python資料型別(數字,字串,[列表],(元組),{字典:字典值},{列表,列表2})Python資料型別字串
- python經典面試題:列表和元組有什麼異同?Python面試題
- Python中如何避免字典和元組的多重巢狀的方法Python巢狀
- Python學習筆記8——列表、字典、元組Python筆記
- Python 列表、元組、字典及集合操作詳解Python
- Python列表及元組的相同點與不同點介紹Python
- 豬行天下之Python基礎——3.2 列表 & 元組Python
- 【Python】(六)Python資料型別-列表和元組,九淺一深,用得到Python資料型別
- Python 元組列表排序:初學者可能忽視的細節Python排序