操作
解釋d = {}
空字典d =
兩專案字典
d = }
巢狀d = dict.fromkeys([『a』, 『b』]}
其他構造技術
d = dict.(zip(keyslist, valslist)) 、d = dict(name = 『bob』, age = 42)
關鍵字、對應的對、鍵列表
d [『egg』] d [『food』][『ham』]
以鍵進行索引運算
『egg』 in d
成員關係:鍵存在測試
d.keys()
方法:鍵
d.values()
值d.items()
鍵+值d.copy()
副本d.get(key, defaul)
預設d.update(d2)
合併d.pop (key)
刪除等len (d)
長度(儲存的元素的數目)
d[key] = 42
新增/修改鍵、刪除鍵
del d [key]
根據鍵刪除條目
list(d.keys()) d1.keys()&d2.keys() dictionary views
字典檢視
d =
字典解析
python常見字串操作
str hello world print str.upper 把所有字元中的小寫字母轉換成大寫字母 print str.lower 把所有字元中的大寫字母轉換成小寫字母 print str.capitalize 把第乙個字母轉化為大寫字母,其餘小寫 print str.title 把每個單詞的第乙...
python常見字串操作
附 python2.x和python3.x中raw input 和input 區別 備註 1 在python2.x中raw input 和input 兩個函式都存在,其中區別為 raw input 將所有輸入作為字串看待,返回字串型別 input 只能接收 數字 的輸入,在對待純數字輸入時具有自己的...
C語言常見字串操作
1 獲取字串長度 標頭檔案 include 函式的定義 size t strlen const char s 函式功能 測字元指標s指向的字串中字元的個數,不包括 0 返回值 字串中字元個數 int main int argc,char ar 執行結果 s1 len 5s1 size 202 字串拷...