python學習系列---collections模塊

1.Counter Counter是對字典類型的補充,用於追蹤值的出現次數。它具有字典的全部功能。在python的內部實現中,Counter類繼承了dict類。python 1.1 基本用法 >>> import collections >>> obj = collections.Counter('I Dreamed A Dream')     >>> obj Counter({' ': 3, '
相關文章
相關標籤/搜索