Python中的关键函数汇总
统计字符串中字符出现为次数import collections
print(collections.Counter("abcdef"))
Counter({'a': 1, 'b': 1, 'c': 1, 'd'
2022-02-26