Python程式設計:Counter計數器-dict字典的子類
Counter計數器,繼承了dict類,基本可以和字典的操作一樣
from collections import Counter
# 例項化
counter = Counter("abcabcccaaabbb")
print(counter)
# Counter({'a': 5, 'b': 5, 'c': 4})
# 數量最多的2個
print(counter.most_common(2))
# [('a', 5), ('b', 5)]
# 檢視所有元素
print("".join(counter.elements()))
# aaaaabbbbbcccc
# 類似dict,檢視鍵
print(counter.keys())
# dict_keys(['a', 'b', 'c'])
# 類似dict,檢視值
print(counter.values())
# dict_values([5, 5, 4])
相關文章
- 【Python】計數器 CounterPython
- python學習:counter計數Python
- Python計數:defaultdict和CounterPython
- Python dict(字典)Python
- 如何使用python計數模組counter?Python
- Python中字典dictPython
- Python字典dict用法Python
- python--字典dictPython
- Jmeter系列(34)- 詳解 Counter 計數器JMeter
- dict字典常用操作(python)Python
- python字典dict操作方法Python
- mapreduce的程式設計模型,計數器程式設計模型
- 人人都能學會的python程式設計教程9:dict和setPython程式設計
- Python中的類超程式設計Python程式設計
- python之字典(dict)基礎篇Python
- Jmeter——迴圈控制器中實現Counter計數器的次數重置JMeter
- dict(字典)的常用方法
- 深入理解 Python 虛擬機器:字典(dict)的最佳化Python虛擬機
- python 中字典dict如何新增元素?Python
- 在手機上程式設計:自制的小飛可程式設計複數計算器(小飛計算器)程式設計
- Python函數語言程式設計指南(3):迭代器Python函數程式設計
- python的函數語言程式設計Python函數程式設計
- Python - 基礎資料型別 dict 字典Python資料型別
- python基礎之字典dict和集合setPython
- 程式設計師的樣子程式設計師
- Python中字典dict的11種不同操作方法Python
- Python3程式設計實戰Tetris機器人(game類)Python程式設計機器人GAM
- python函數語言程式設計Python函數程式設計
- 介面設計方法 — 3. 字典功能的設計
- Python 中的函數語言程式設計Python函數程式設計
- Python 字典 dict 獲取索引 轉化為 listPython索引
- 程式設計師強子程式設計師
- 給 Python程式設計師的函數語言程式設計實踐經驗Python程式設計師函數
- python中類和物件的__dict__Python物件
- 程式設計的真實樣子程式設計
- 類程式設計的WAF(上)程式設計
- Python 超程式設計 - 裝飾器Python程式設計
- Python - 物件導向程式設計 - 類變數、例項變數/類屬性、例項屬性Python物件程式設計變數