使用常规for
循环
|
使用collections
库中的defaultdict
In [57]: from collections import defaultdict |
使用collections
库中的Counter
In [64]: from collections import Counter |
参考书籍
- 《编写高质量代码:改善 Python 程序的 91 个建议》迷你书-建议 39:使用 Counter 进行计数统计