python 基础 字典 小例子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 基础 字典 小例子相关的知识,希望对你有一定的参考价值。
统计单词次数 作为字典存储
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 基础 字典 小例子的主要内容,如果未能解决你的问题,请参考以下文章