Python 的List 和tuple,Dict,Set
list = [] tuple = () 相當於陣列
一個是所有都可以變化,另外一個只有鏈為List的時候才可以變化;
dict 字典 相當於map 使用的是key--- value 模式
獲取value的兩種方式
dict[key]
dict.get(key) 這種可以帶引數 如果不帶有就返回 dict.get(key,-1)不存在就返回-1
Set 只儲存key 的陣列
a = set([1,1,2,3,4,4]);
print(a);
a&a a|a 數學集合的操作
1,2,3,4
相關文章
- python中的list,tuple,set和dict(參考python文件)Python
- Python3學習筆記2,基本資料型別-list、tuple、set、dictPython筆記資料型別
- Python零基礎學習筆記(三十二)——list/tuple/dict/set檔案操作Python筆記
- Python中基礎資料型別(List、Tuple、Dict)的概念和用法Python資料型別
- python中的list、tuple和dictionaryPython
- 草根學Python(四) Dict 和 SetPython
- dict和set
- Python中元組tuple的作用以及tuple和list的轉換Python
- Python基礎:dict & setPython
- 使用list和tuple
- Python中的基礎資料型別(List,Tuple,Dict)及其常用用法簡析Python資料型別
- python列表(list)和元組(tuple)詳解Python
- Python的List vs Tuple比較Python
- Python中tuple和list的區別?Python基礎學習!Python
- Python基礎:使用list & tuplePython
- Python list,dict問題解答Python
- python list tuple str dic series dataframePython
- list和tuple元組的區別
- Python開發的入門教程(二)-List和Tuple型別Python型別
- Python中tuple和list有什麼區別?Python入門!Python
- 人人都能學會的python程式設計教程9:dict和setPython程式設計
- Python 選列表 list 還是元組 tuple 的思考Python
- Python 字典 dict 獲取索引 轉化為 listPython索引
- Python3之字串str、列表list、元組tuple的切片操作Python字串
- Python 內建型別 dict, list 執行緒安全嗎Python型別執行緒
- python中類和物件的__dict__Python物件
- List、Set、Queue、Map
- Python中的tuplePython
- Redis in .NET Core 入門:(4) LIST和SETRedis
- Python中的dictPython
- python:get和setPython
- List Set Map之間的不同
- Java筆記——【List、Set】Java筆記
- List,Set,Queue,Map介面
- python的dir()和__dict__屬性的區別Python
- Python3 dict和str互轉Python
- Python dict(字典)Python
- python存取dictPython