用Python实现词频统计

#词频统计

a = "And how will this be accomplished? For I have neither the knowledge nor the experience to achieve the greatness and already I have stumbled in ignorance and fallen into pools of self-pity. The answer is simple. I will commence my journey unencumbered with either the weight of unnecessary knowledge or the handicap of meaningless experience. Nature already has supplied me with knowledge and instinct far greater than any beast in the forest and the value of experience is overrated, usually by old men who nod wisely and speak stupidly."

#(1)大小写同一
a = a.lower()
print(a)
#转化为小写
#(2)切分
result = a.split()
print(result)
#(3)遍历
#定义储存字典
re = {}
for word in result:
    l = word.strip()#去除两边空格
    re[l] = re.get(l,0)+1
print(re)

你可能感兴趣的:(python,开发语言,后端)