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計數:defaultdict和CounterPython
- Python dict(字典)Python
- Python中字典dictPython
- Python字典dict用法Python
- 如何使用python計數模組counter?Python
- dict字典常用操作(python)Python
- Jmeter系列(34)- 詳解 Counter 計數器JMeter
- python字典dict操作方法Python
- 人人都能學會的python程式設計教程9:dict和setPython程式設計
- Python中的類超程式設計Python程式設計
- mapreduce的程式設計模型,計數器程式設計模型
- 字典dict
- python 中字典dict如何新增元素?Python
- python之字典(dict)基礎篇Python
- 深入理解 Python 虛擬機器:字典(dict)的最佳化Python虛擬機
- Jmeter——迴圈控制器中實現Counter計數器的次數重置JMeter
- dict(字典)的常用方法
- Python - 基礎資料型別 dict 字典Python資料型別
- Python中字典dict的11種不同操作方法Python
- Python3程式設計實戰Tetris機器人(game類)Python程式設計機器人GAM
- python函數語言程式設計Python函數程式設計
- Python 超程式設計 - 裝飾器Python程式設計
- Python 字典 dict 獲取索引 轉化為 listPython索引
- 介面設計方法 — 3. 字典功能的設計
- python中類和物件的__dict__Python物件
- Python程式設計:探索有趣的程式碼設計模式Python程式設計設計模式
- 類程式設計的WAF(上)程式設計
- day05 字典 dict
- Python - 物件導向程式設計 - 類變數、例項變數/類屬性、例項屬性Python物件程式設計變數
- python函數語言程式設計一Python函數程式設計
- python函數語言程式設計二Python函數程式設計
- Python類的基礎--設計、使用Python
- Python 程式設計Python程式設計
- python程式設計Python程式設計
- python程式設計:從入門到實踐學習筆記-字典Python程式設計筆記
- python函數語言程式設計3(裝飾器的深入理解)Python函數程式設計
- Python學習之路——類-物件導向程式設計Python物件程式設計
- 【Python從入門到精通】(七)Python字典(dict)讓人人都Python