您好,登錄后才能下訂單哦!
這里的Counter是指collections中的Counter,通過Counter可以實(shí)現(xiàn)字典的創(chuàng)建以及字典key出現(xiàn)頻次的統(tǒng)計(jì)。然而,使用的時(shí)候還是有一點(diǎn)需要注意的小事項(xiàng)。
使用Counter創(chuàng)建字典通常有4種方式。其中,第一種方式是不帶任何參數(shù)創(chuàng)建一個(gè)空的字典。剩下的三種分別在下面通過簡(jiǎn)單的代碼進(jìn)行演示。
創(chuàng)建方法2示范代碼:
need python.' cell1 =(2,2,3,5,5,4,3,2,1,1,2,3,3,2,2) list1 =[2,2,3,5,5,4,3,2,1,1,2,3,3,2,2] c1 = Counter(str1) c2 =Counter(cell1) c3 =Counter(list1) print('c1is:'),c1.items() print('c2is:'),c2.items() print('c3is:'),c3.items()
運(yùn)行結(jié)果如下:
E:\WorkSpace\05_數(shù)據(jù)分析\01_利用Python進(jìn)行數(shù)據(jù)分析\第02章_引言>pythoncounter.py
c1 is: [(' ', 5),('e', 3), ('d', 1), ('f', 1), ('i', 2), ('h', 2), ('l', 1), ('o', 3), (',', 1),('p', 1), ('s', 2), ('r', 1), ('u', 1), ('t', 2), ('.', 1), ('y', 2), ('n', 2)] c2 is: [(1, 2),(2, 6), (3, 4), (4, 1), (5, 2)] c3 is: [(1, 2),(2, 6), (3, 4), (4, 1), (5, 2)]
這三種創(chuàng)建方法都屬于一類,只要是傳入的對(duì)象是一個(gè)可迭代的對(duì)象都能夠通過Counter構(gòu)建出一個(gè)字典。
構(gòu)建方法3示范代碼:
from collectionsimport Counter d1 ={'apple':5,'pear':2,'peach':3} c1 = Counter(d1) print(c1.items())
程序的運(yùn)行結(jié)果如下:
E:\WorkSpace\05_數(shù)據(jù)分析\01_利用Python進(jìn)行數(shù)據(jù)分析\第02章_引言>pythonexp1.py
[('pear', 2),('apple', 5), ('peach', 3)]
第4中構(gòu)建方法示范代碼如下:
from collectionsimport Counter c1 = Counter(apple= 7,xiaomi = 5,oppo = 9) print(c1.items())
程序運(yùn)行結(jié)果如下:
E:\WorkSpace\05_數(shù)據(jù)分析\01_利用Python進(jìn)行數(shù)據(jù)分析\第02章_引言>pythonexp2.py
[('xiaomi', 5),('oppo', 9), ('apple', 7)]
其實(shí)在一定程度上,第三種方式跟一般的字典也就沒太大差異了,那么這個(gè)Counter構(gòu)造的對(duì)象又有什么不同呢?其實(shí),這里面多了一個(gè)統(tǒng)計(jì)的通能。
舉例用的簡(jiǎn)化代碼如下:
from collectionsimport Counter str1 = 'Life isshort, you need python.' c1 = Counter(str1) print(c1.items()) print(c1['i']) print(c1['e']) print(c1.most_common(5))
運(yùn)行結(jié)果如下:
E:\WorkSpace\05_數(shù)據(jù)分析\01_利用Python進(jìn)行數(shù)據(jù)分析\第02章_引言>pythonexp3.py
[(' ', 5), ('e',3), ('d', 1), ('f', 1), ('i', 2), ('h', 2), ('L', 1), ('o', 3), (',', 1), ('p',1), ('s', 2), ('r', 1), ('u', 1), ('t', 2), ('.', 1), ('y', 2), ('n', 2)] 2 3 [(' ', 5), ('e',3), ('o', 3), ('i', 2), ('h', 2)]
從以上結(jié)果可以看出,通過這種方法構(gòu)建的對(duì)象不僅能夠具有字典的屬性,同時(shí)還可以統(tǒng)計(jì)key的數(shù)目并且通過相應(yīng)的方法輸出最高幾項(xiàng)的清單。
除此之外,還可以對(duì)生成的對(duì)象進(jìn)行修改,比如修改其value。如果key不存在的時(shí)候統(tǒng)計(jì)數(shù)為0,但是統(tǒng)計(jì)數(shù)為0并不意味著沒有這個(gè)key。也就是說不能夠通過賦值為0的方式刪除其中的元素。
具體的演示代碼如下:
from collectionsimport Counter str1 = 'Life isshort, you need python.' c1 = Counter(str1) print(c1.items()) print(c1['i']) c1['i'] = 0 print(c1['i']) print(c1.items()) del c1['i'] print(c1.items()
程序運(yùn)行結(jié)果:
E:\WorkSpace\05_數(shù)據(jù)分析\01_利用Python進(jìn)行數(shù)據(jù)分析\第02章_引言>pythonexp3.py
[(' ', 5), ('e',3), ('d', 1), ('f', 1), ('i', 2), ('h', 2), ('L', 1), ('o', 3), (',', 1), ('p',1), ('s', 2), ('r', 1), ('u', 1), ('t', 2), ('.', 1), ('y', 2), ('n', 2)] 2 0 [(' ', 5), ('e',3), ('d', 1), ('f', 1), ('i', 0), ('h', 2), ('L', 1), ('o', 3), (',', 1), ('p',1), ('s', 2), ('r', 1), ('u', 1), ('t', 2), ('.', 1), ('y', 2), ('n', 2)] [(' ', 5), ('e',3), ('d', 1), ('f', 1), ('h', 2), ('L', 1), ('o', 3), (',', 1), ('p', 1), ('s',2), ('r', 1), ('u', 1), ('t', 2), ('.', 1), ('y', 2), ('n', 2)]
以上這篇Python中使用Counter進(jìn)行字典創(chuàng)建以及key數(shù)量統(tǒng)計(jì)的方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。