Python中內建的字典函式
以下為python3中內建的字典函式:
len(dict) :計算字典元素個數,即鍵的總數。
str(dict) :輸出字典可列印的字串表示。
type(variable) :返回輸入的變數型別,如果變數是字典就返回字典型別。
dict.clear() :刪除字典內所有元素。
dict.copy(): 返回一個字典的淺複製。
dict.fromkeys() :建立一個新字典,以序列seq中元素做字典的鍵,val為字典所有鍵對應的初始值。
dict.get(key, default=None): 返回指定鍵的值,如果值不在字典中返回default值。
dict.has_key(key) :如果鍵在字典dict裡返回true,否則返回false。
dict.items() :以列表返回可遍歷的(鍵, 值) 元組陣列。
dict.keys() :以列表返回一個字典所有的鍵。
dict.setdefault(key, default=None) :和dict.get()類似, 但如果鍵不已經存在於字典中,將會新增鍵並將值設為default。
dict.update(dict2) :把字典dict2的鍵/值對更新到dict裡。
dict.values() :以列表返回字典中的所有值。
相關文章
- python字典鍵的特性及字典內建函式&方法Python函式
- Python中典型內建函式的用法Python函式
- Python內建函式Python函式
- python 內建函式Python函式
- python的部分內建函式Python函式
- Python內建函式示例Python函式
- python常用內建函式Python函式
- 1.5.5 Python內建函式Python函式
- Python內建函式(一)Python函式
- Python內建函式(二)Python函式
- Python 內建函式大全Python函式
- python內建函式大全Python函式
- python 常用內建函式Python函式
- python內建函式——sortedPython函式
- Python中的56個內建函式詳解(七)Python函式
- Python 中堪稱神仙的6個內建函式Python函式
- python內建函式-eval()函式與exec()函式的區別Python函式
- c++中內建函式C++函式
- python合集———內建函式合集Python函式
- python內建函式 map/reducePython函式
- python 66個內建函式Python函式
- python3內建函式Python函式
- python常見內建函式Python函式
- 【Python】內建函式 enumeratePython函式
- python 內建函式setattr() getattr()Python函式
- python高階內建函式Python函式
- Python中冷門但非常好用的內建函式Python函式
- Python的常用內建函式介紹Python函式
- 【Python】python內建函式介紹Python函式
- Python中,類的特殊方法與內建函式的關聯Python函式
- python 字典內建方法get的使用Python
- Python的字典、集合和函式Python函式
- 內建函式函式
- 12.4、python內建函式—sortedPython函式
- 12.2、python內建函式—formatPython函式ORM
- python 內建函式Built-in FunctionsPython函式UIFunction
- webgl內建函式--指數函式Web函式
- webgl內建函式--通用函式Web函式