Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如让说
numbers=input("Enter numbers: ")
如果有人输入 11234458881
我怎样才能使输出
1 出现 3 次
2 发生 1 次
3 发生 1 次
4 出现 2 次
等等
为什么不使用计数器:
from collections import Counter Counter("11234458881")
返回:
Counter({'1': 3, '8': 3, '4': 2, '3': 1, '2': 1, '5': 1})