#统计字符个数 str=input("请输入一串字符:") resoult={} for i in str: resoult[i]=str.count(i) print(resoult) 不得不惊叹Python内置函数的强大