Python--统计字符串中各字符的个数

1 #统计字符个数
2 str=input("请输入一串字符:")
3 resoult={}
4 for i in str:
5     resoult[i]=str.count(i)
6 print(resoult)

不得不惊叹Python内置函数的强悍

 

posted @ 2018-03-27 21:44  Amen-Z  阅读(90156)  评论(0编辑  收藏  举报