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列表(list)和元組(tuple)詳解Python
- python基礎之列表list元組tuplePython
- Python 選列表 list 還是元組 tuple 的思考Python
- Python中元組tuple的作用以及tuple和list的轉換Python
- Swift元組(Tuple)Swift
- Python資料型別(元組tuple)Python資料型別
- Python中tuple和list的區別?Python基礎學習!Python
- Python tuple(元組)Python
- Python元組tuplePython
- Python3之字串str、列表list、元組tuple的切片操作Python字串
- Python中tuple和list有什麼區別?Python入門!Python
- python--元組tuplePython
- Python 建立元組tuplePython
- Python - 基礎資料型別 tuple 元組Python資料型別
- Python中的元組和列表的區別Python
- python中的list、tuple和dictionaryPython
- Python 的List 和tuple,Dict,SetPython
- python學習:元組tuplePython
- .NET Framework 4.0之Tuple(元組)Framework
- 總結python 元組和列表的區別Python
- Python開發的入門教程(二)-List和Tuple型別Python型別
- Python 列表和元組的區別是什麼?Python
- 從資料庫的角度談-元組(Tuple)和記錄(record)資料庫
- 草根學Python(三)List 和 TuplePython
- python中的列表和元組有什麼區別Python
- python之tuple元組,基礎篇Python
- python資料結構元組tuplePython資料結構
- Python中基礎資料型別(List、Tuple、Dict)的概念和用法Python資料型別
- std::vector 和 std::list 區別
- int[] 、 list<int> 、 list<int>[] 的區別
- Python筆記:string,tuple,list,dictionary的區別(之二,高階用法與型別轉換)Python筆記型別
- java中list、set和map 的區別(轉)Java
- Python的List vs Tuple比較Python
- 碼元和碼點的區別
- List、Set、Map的區別
- set、List、map的區別
- 組播和廣播的區別