python中collections.Counter是什么?
1、说明
可以用来给可散列的对象计数,或者是当成多重集合来使用——多重集合就是集合里的元素可以出现多次1。
类似于其它编程语言中的bags或者multisets2。
2、实例
counter=collections.Counter(['生物','印记','考古学家','生物','枣','印记'])
logging.info('counter->%s',counter)
counter.update(['化石','果实','枣','生物'])
logging.info('counter->%s',counter)
most=counter.most_common(2)
logging.info('most->%s',most)
以上就是python中collections.Counter的介绍,希望能对大家有所帮助。更多Python学习教程请关注IT培训机构:千锋教育。