Python中的元組和列表的區別
python中元組用小括號而列表用中括號。
但是元組不能修改值。
實驗程式碼如下:
a=(1,3,4,2)
b=[1,2,3,4]
b[1]=5
print(b)
a[1]=5
print(a)
實驗結果:
[1, 5, 3, 4]
a[1]=5
TypeError: 'tuple' object does not support item assignment
相關文章
- python中的列表和元組有什麼區別Python
- Python之列表與元組的區別詳解Python
- Python中列表、元組、字典有何區別?Python學習!Python
- python元組和列表Python
- 三、python的資料型別 列表、元組、字典Python資料型別
- Python列表、元組、集合、字典的區別是什麼?入門知識!Python
- python資料型別 列表+元組Python資料型別
- Python3中列表方法append()和extend()的區別PythonAPP
- Python中列表遍歷使用range和enumerate的區別Python
- list和tuple元組的區別
- 列表和元組的方法
- python基礎之序列型別的方法——列表&元組Python型別
- 資料型別· 第1篇《元組和列表的效能分析、命名元組》資料型別
- Python陣列和列表的區別?Python學習教程Python陣列
- 列表和元組
- Python中is和==的區別Python
- Python 中 is 和 == 的區別Python
- python列表(list)和元組(tuple)詳解Python
- 013:列表和元組的應用
- python如何返回元組,列表或字典的?Python
- 【Python】(六)Python資料型別-列表和元組,九淺一深,用得到Python資料型別
- Python 元組,不可變的列表,滾雪球學 PythonPython
- Python列表、元組、字典使用Python
- 列表中的append,extend,+=,+的區別APP
- Python資料型別(數字,字串,[列表],(元組),{字典:字典值},{列表,列表2})Python資料型別字串
- python 元組與列表的異同點 1125Python
- Python基礎:資料型別-列表與元組(6)Python資料型別
- Python中的@staticmethod和@classmethod的區別PythonSSM
- Python中字典和json的區別!PythonJSON
- python中break和continue的區別Python
- python_列表——元組——字典——集合Python
- Python 學習之元組列表Python
- Python之列表&元組小練Python
- python list列表基礎(元組)Python
- Python元組、列表、集合及列表去重操作Python
- Python 選列表 list 還是元組 tuple 的思考Python
- python的模組和類有什麼區別Python
- Python3中_和__的用途和區別Python
- Python中爬蟲框架或模組的區別!Python爬蟲框架