這篇文章主要介紹python中實(shí)現(xiàn)計(jì)數(shù)的方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
蚌埠ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書(shū)未來(lái)市場(chǎng)廣闊!成為創(chuàng)新互聯(lián)的ssl證書(shū)銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:13518219792(備注:SSL證書(shū)合作)期待與您的合作!
python中實(shí)現(xiàn)計(jì)數(shù)的一般方法:
1、使用字典解決(dict)
字典計(jì)數(shù)是最常用的計(jì)數(shù)方法,逐個(gè)遍歷數(shù)據(jù)結(jié)構(gòu)中元素,將元素作為鍵,元素個(gè)數(shù)作為值進(jìn)行統(tǒng)計(jì),依次加入字典中。
實(shí)例演示
test_lst = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'a', 'f', 's', 'b', 'h', 'k', 'i', 'j', 'c', 'd', 'f'] counter_dict = {} for item in test_lst:if item in counter_dict: counter_dict[item] += 1 else: counter_dict[item] = 1print(counter_dict)
程序運(yùn)行結(jié)果>>>{'i': 1, 'a': 2, 's': 1, 'g': 1, 'b': 2, 'k': 1, 'h': 1, 'j': 1, 'c': 2, 'e': 1, 'd': 2, 'f': 3}
2、使用dict.setdefault(key, dvalue)方法解決
可以使用dict.setdefault()方式進(jìn)行統(tǒng)計(jì),比起直接使用dict,該方法不用使用if-else語(yǔ)句進(jìn)行判斷,且避免了KeyError異常。
實(shí)例演示
test_lst = ['a', 'b', 'c', 'd', 'eshi', 'f', 'g', 'a', 'f', 's', 'b', 'h', 'k', 'i', 'j', 'c', 'd', 'f'] counter_sdict = {}for item in test_lst:counter_sdict[item] = counter_sdict.setdefault(item, 0) + 1print(counter_sdict)
程序運(yùn)行結(jié)果>>>{'k': 1, 'e': 1, 'c': 2, 'a': 2, 'b': 2, 'd': 2, 'f': 3, 'g': 1, 's': 1, 'j': 1, 'i': 1, 'h': 1}
同dict方法,但程序的容錯(cuò)性比上面的方法要好,且數(shù)據(jù)量大時(shí),該程序比使用dict的傳統(tǒng)方法要節(jié)省時(shí)間。
3、使用defaultdict類解決
defaultdict類的初始化函數(shù)接受一個(gè)類型作為參數(shù),當(dāng)所訪問(wèn)的鍵不存在的時(shí)候,它自動(dòng)實(shí)例化一個(gè)值作為默認(rèn)值。使用defaultdict與使用dict的區(qū)別在于,defaultdict能夠自動(dòng)對(duì)獲取結(jié)果進(jìn)行排序,這就解決了我們后續(xù)排序的麻煩,并且defaushltdict是自帶“輪子”,就不用重新創(chuàng)造了,節(jié)省開(kāi)發(fā)時(shí)間哦。
實(shí)例演示
from collections import defaultdict test_lst = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'a', 'f', 's', 'b', 'h', 'k', 'i', 'j', 'c', 'd', 'f'] counter_ddict = defaultdict(int)for item in test_lst:counter_ddict[item] += 1print(counter_ddict)
程序運(yùn)行結(jié)果>>>defaultdict(<class 'int'>, {'k': 1, 'e': 1, 'c': 2, 'a': 2, 'b': 2, 'd': 2, 'f': 3, 'g': 1, 's': 1, 'j': 1, 'i': 1, 'h': 1})
4、結(jié)合使用set和list兩種數(shù)據(jù)結(jié)構(gòu)來(lái)解決
思路如下:首先,初始化一個(gè)set和一個(gè)列表list,獲取序列中需要統(tǒng)計(jì)的元素;然后,依次遍歷set中的內(nèi)容,使用需要統(tǒng)計(jì)序列的cosut()方法,分別統(tǒng)計(jì)set中的內(nèi)容并計(jì)入新列表中。
實(shí)例演示
test_lst = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'a', 'f', 's', 'b', 'h', 'k', 'i', 'j', 'c', 'd', 'f'] r_lst = []temp = set(test_lst)for item in temp:r_lst.append((item, test_lst.count(item)))print(r_lst)
程序運(yùn)行結(jié)果>>>[('j', 1), ('k', 1), ('a', 2), ('s', 1), ('d', 2), ('h', 1), ('f', 3), ('c', 2), ('e', 1), ('b', 2), ('i', 1), ('g', 1)]
以上是python中實(shí)現(xiàn)計(jì)數(shù)的方法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
網(wǎng)站題目:python中實(shí)現(xiàn)計(jì)數(shù)的方法
當(dāng)前URL:http://jinyejixie.com/article10/jopego.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站收錄、動(dòng)態(tài)網(wǎng)站、網(wǎng)頁(yè)設(shè)計(jì)公司、云服務(wù)器、響應(yīng)式網(wǎng)站、小程序開(kāi)發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)