在Python中,我如何检查数字在输入中出现的次数?

时间:2013-03-13 23:38:33

标签: python count digits

例如,假设

numbers=input("Enter numbers: ")

如果有人输入11234458881

如何制作输出

1发生3次

2发生1次

3发生一次

4发生2次

等等

1 个答案:

答案 0 :(得分:6)

为什么不使用Counter:

from collections import Counter
Counter("11234458881")

返回:

Counter({'1': 3, '8': 3, '4': 2, '3': 1, '2': 1, '5': 1})