python中統計計數的幾種方法
使用字典dict()(推薦學習:Python影片教學 )
循環遍歷出一個可迭代物件中的元素,如果字典沒有該元素,那麼就讓該元素作為字典的鍵,並將該鍵賦值為1,如果存在就將該元素對應的值加1.
lists = ['a','a','b',5,6,7,5] count_dict = dict() for item in lists: if item in count_dict: count_dict[item] += 1 else: count_dict[item] = 1
使用defaultdict()
defaultdict(parameter)可以接受一個型別參數,如str,int等,但傳遞進來的類型參數,不是用來約束值的類型,更不是約束鍵的類型,而是當鍵不存在的話,實現一種值的初始化
defaultdict(int):初始化為0
defaultdict(float):初始化為0.0
defaultdict(str):初始化為」
from collections import defaultdict lists = ['a', 'a', 'b', 5, 6, 7, 5] count_dict = defaultdict(int) for item in lists: count_dict[item] += 1
使用集合(set)和列表(list)
先使用set去重,然後循環的把每一個元素和每一個元素對應的次數lists.count(item)組成一個元組放在列表裡面
lists = ['a', 'a', 'b', 5, 6, 7, 5] count_set = set(lists) count_list = list() for item in count_set: count_list.append((item,lists.count(item))
更多Python相關技術文章,請造訪Python教程欄位進行學習!
以上是python怎麼計數的詳細內容。更多資訊請關注PHP中文網其他相關文章!