输入一串字符,统计其中每个数字出现的次数并输出。
谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢大佬!!!!
收起
a = input()
for i in set(a):
b = list(a).count(i)
print(i, b)
报告相同问题?