Python的元組()與字典 { }
元組tuple
我們在定義變數之前,最好先申明該變數的型別,如
l=list() # l為列表print(l)t=tuple() # t為元組print(t)
當我們定義一個相同元素時,不一樣的寫法將得到不一樣的資料型別
a1=(1)a2=(1,)print(type(a1))#print(type(a2))#
在tuple型別中,單個元素一定要加“,”逗號,否則無法識別為tuple型別。
m = (1,2,3,43,4,6,1,3,4,4)# count(value) 統計value的個數print(m.count(1))# 2# index(value) 返回第一個value元素的下標print(m.index(4))# 4print(m.index(2))# 1
字典dict
字典是我們在其他應用中用到的keys:values形式的一種表達形式,字典可以儲存任意的物件,也可以是不同的資料型別。
# 字典的三種定義方式d1 = dict(name = "zhou",age = 22)print(d1)# {'name': 'zhou', 'age': 22}d2 = {"id":43245232,"name":"zhoumoumou"}print(d2)# {'id': 43245232, 'name': 'zhoumoumou'}d3 = dict([("ip","1.1.1.1"),("address","ChangSha")])print(d3)# {'ip': '1.1.1.1', 'address': 'ChangSha'}
方法:
# get(key) 根據key獲取valueprint(d1.get("name"))# zhouprint(d1.get("address"))# None# setdefault 根據key獲取value,如果key不存在,可以設定預設的valueprint(d1.setdefault("name"))# zhouprint(d1.setdefault("address","ChangSha"))# ChangSha# 獲取所有的keys值print(d2.keys())# dict_keys(['id', 'name'])print(type(d2.keys()))#
# 獲取所有的values值print(d2.values())# dict_values([43245232, 'zhoumoumou'])print(type(d2.values()))#
for x,y in d3.items():print("key = {0},value = {1}".format(x,y))# key = ip,value = 1.1.1.1# key = address,value = ChangSha
update 和list中的 + 類似
l=list() l+=[1,2,3,4]
m=dict()n=dict(name="zhou",age=12)m.update(n)print(m)# {'name': 'zhou', 'age': 12}
# l=list() l+=[1,2,3,4]l=list()m = [1,2,3,4,5,6]l+=mprint(l)# [1, 2, 3, 4, 5, 6]
print(d3)# pop(key) 刪除key所對應的元素keyDelete = d3.pop("ip")print(keyDelete)print(d3)
其他常用操作
help() ctrl + 滑鼠左鍵
s="dedwefwfrgwr"# help(s.split())result = s.startswith("de")print(result)# True
# dir()print(dir(s))# ['__add__', '__class__', '__contains__', '__delattr__', '__dir__',# '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__',# '__getitem__', '__getnewargs__', '__gt__', '__hash__', '__init__',# '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__',# '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__',# '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__',# '__str__', '__subclasshook__', 'capitalize', 'casefold', 'center',# 'count', 'encode', 'endswith', 'expandtabs', 'find', 'format',# 'format_map', 'index', 'isalnum', 'isalpha', 'isdecimal', 'isdigit',# 'isidentifier', 'islower', 'isnumeric', 'isprintable', 'isspace',# 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'maketrans',# 'partition', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition',# 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip',# 'swapcase', 'title', 'translate', 'upper', 'zfill']
# type()a="123"print(type(a))#print(type(int(a)))#
# isinstance(a,type) 返回值是一個bool型別print(isinstance(s,str))# Trueprint(isinstance(s,dict))# False
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/756/viewspace-2802627/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python的元組()與字典{}Python
- python元組與字典簡介Python
- Python列表、元組、字典使用Python
- Python元組和字典的拆包Python
- python_列表——元組——字典——集合Python
- python入門:元組和字典Python
- python基礎:元組轉字典Python
- python如何返回元組,列表或字典的?Python
- 3-python 元組 字典 集合的操作Python
- 【美妙的Python之五】變數:列表、元組、元字典Python變數
- 三、python的資料型別 列表、元組、字典Python資料型別
- Python 列表、元組、字典及集合操作詳解Python
- Python學習筆記8——列表、字典、元組Python筆記
- Python基礎知識七 元組&字典&集合Python
- python自學第三天(-)-列表、元組、字典Python
- Python學習筆記 5.0 元組 與 字典 與 集合 與 公共操作 與 推導式Python筆記
- Python中如何避免字典和元組的多重巢狀的方法Python巢狀
- 2.列表_元組_字典_集合
- 字典,元組,集合的增刪改查
- Python中列表、元組、字典有何區別?Python學習!Python
- Python中列表、元組、字典、集合與字串,相關函式,持續更新中……Python字串函式
- Python資料型別(數字,字串,[列表],(元組),{字典:字典值},{列表,列表2})Python資料型別字串
- Python3組合資料型別(元組、列表、集合、字典)語法Python資料型別
- Python基礎語法2 元組 & 字典 & 選擇結構Python
- python3 筆記14.列表元組字典支援的函式Python筆記函式
- Python標準型別的比較原則:字典VS列表(元組)Python型別
- Python中幾種資料結構的整理,列表、字典、元組、集合Python資料結構
- Python奇技淫巧—[2]—使用元組代替字典,同時為元組元素命名,提高可讀性Python
- python的元組Python
- Python列表、元組、集合、字典的區別是什麼?入門知識!Python
- Python中元組,列表,字典的區別Python
- Python第六週列表與元組Python
- 【Python_029】內建資料結構,列表 | 字典 | 集合 | 元組Python資料結構
- Python 元組Python
- Python之列表與元組的區別詳解Python
- python中的集合與字典Python
- python元組的特點Python
- python列表元組的操作Python