1. 程式人生 > >python 基礎 字典 小例子

python 基礎 字典 小例子

free 反轉 efault who print python 基礎 for style cot

統計單詞次數 作為字典存儲

cotent = "who have an apple apple is free free is money you know" result = {} for s in content.split(""): if s in result: result[s] + =1 else: result[s] = 1 print result

反轉上面的結果
res = {}
for k,v in result.items():
  res.setdefault(v,[])
  res[v].append(k)

python 基礎 字典 小例子