增刪改查
增 fromkeys
dic={}
dic[『dd』]=(『你好』)
dic[『ss』]=(『lili』)
dic[『ww』]=(『wangwei』)
dic[『qq』]=『ashui』
dic[『support』]=『寶藍』
print(dic)
dic.pop(『nj』)
print(dic )
dic=
res=dic.pop( 』 q qq 』 : 』 沒有 』 )
print(res)
popitem 刪除最後乙個鍵值對
dic=
dic.popitem()
print(dic)
clear
dic.clear()
print(dic)
改update 批量更新(有該鍵更新,沒有就新增)
dic=
dic1=
dic.update(dic1)
print(dic )
查get 通過鍵獲取值(若沒有該鍵,可設定預設值,預防報錯)
di
Python字典以及相關函式使用
不可變型別 整型,字串,元組 可變型別 列表,字典 不能用作鍵值名 dic handsome true print dic print dic hobby 字典的兩個特點 無序,鍵唯一 覆蓋掉 字典的建立的兩種方式 a list 1,2,3,4,5 轉換為乙個列表 print a a dict na...
字典和集合的相關函式
dic dic top 南韓the shy dic middle 肉雞rookie dic bottom a water dic jungle 鞋王 dic support bao blue print dic lst a b c dic fromkeys lst,none print dic di...
字典相關函式 集合相關的操作 交差並補
dic dic top 廉頗 dic middle 妲己 dic bottom 孫尚香 print dic 1.fromkeys 使用一組鍵和預設值建立字典 快速定義字典 lst a b c fromkeys 塞滿鍵的容器,預設值 dic fromkeys lst,none print dic 1....