list和tuple元組的區別
num = [1, 2, 3, 4] # 訪問元素 print(num[1]) # 取最後一個元素 print(num[-1]) # 尾部新增元素 x= num.append(5) # insert插入指定位置 print(num) num.insert(3,50) print(num) # pop刪除最後一個元素 print(num.pop()) print(num) print(num.pop(3)) print(num) # [1, 2, 3, 4] # 替換元素 num[3] = 50 print(num) # list中可以時不同資料型別 num = [1, 4, 'dd', "討厭"] print(num) # tuple num = (1,2,4,3,6) # 可以獲取元素 print(num[2]) # 不可修改,無append,insert等 # num[2] = 7 #定義空的元組 num = () # 定義一個元素,1代表個數,需要逗號 num = (1,)
相關文章
- python列表(list)和元組(tuple)詳解Python
- Python中tuple和list的區別?Python基礎學習!Python
- Python 選列表 list 還是元組 tuple 的思考Python
- Python中元組tuple的作用以及tuple和list的轉換Python
- Python中tuple和list有什麼區別?Python入門!Python
- 使用list和tuple
- Python資料型別(元組tuple)Python資料型別
- 元組tuple的方法
- Python3之字串str、列表list、元組tuple的切片操作Python字串
- Python元組tuplePython
- Python tuple(元組)Python
- python中的list、tuple和dictionaryPython
- Python 的List 和tuple,Dict,SetPython
- Python - 基礎資料型別 tuple 元組Python資料型別
- Python開發的入門教程(二)-List和Tuple型別Python型別
- Python中基礎資料型別(List、Tuple、Dict)的概念和用法Python資料型別
- Python筆記:string,tuple,list,dictionary的區別(之二,高階用法與型別轉換)Python筆記型別
- python中的列表和元組有什麼區別Python
- 從資料庫的角度談-元組(Tuple)和記錄(record)資料庫
- std::vector 和 std::list 區別
- python資料結構元組tuplePython資料結構
- python之tuple元組,基礎篇Python
- int[] 、 list<int> 、 list<int>[] 的區別
- Python的List vs Tuple比較Python
- python中的list,tuple,set和dict(參考python文件)Python
- 04_python——元組(tuple)、字串 、 bytes bytearrayPython字串
- Python基礎:使用list & tuplePython
- 碼元和碼點的區別
- python list tuple str dic series dataframePython
- Python之列表與元組的區別詳解Python
- python list列表基礎(元組)Python
- 【TVM 教程】使用元組輸入(Tuple Inputs)進行計算和歸約
- CSS列表中list-style-position inside 和outside 的區別?CSSIDE
- 資料型別· 第1篇《元組和列表的效能分析、命名元組》資料型別
- html中list-style-type與list-style的區別HTML
- C# 中List中的Count和Count(),有什麼區別C#
- Python中的基礎資料型別(List,Tuple,Dict)及其常用用法簡析Python資料型別
- Python零基礎學習筆記(二十)——tuple元組Python筆記