python collection模組中幾種資料結構(Counter、OrderedDict、namedtup)

來源:互聯網
上載者:User

標籤:

collection模組中有幾種資料結構我們可能用得到。

Counter是字典的子類,負責計數的一個字典,支援 + 加法 - 減法 & 求公用元素 | 求並集

print('Counter類型的應用')c = Counter("dengjingdong")#c = Counter({'n': 3, 'g': 3, 'd': 2, 'i': 1, 'o': 1, 'e': 1, 'j': 1})print("未經處理資料:",c)print("最多的兩個元素:",c.most_common(2))#輸出數量最多的元素print("d的個數:",c['d'])#輸出d的個數print(c.values())#輸出字典的value列表print(sum(c.values()))#輸出總字元數print(sorted(c.elements()))#將字典中的資料,按字典序排序print('\n\n')"""#刪除所有d元素del c['d'] b = Counter("dengxiaoxiao")#通過subtract函數刪除元素,元素個數可以變成負數。c.subtract(b) """"""可以添加資料b = Counter("qinghuabeida")c.update(b)"""
OrderedDict類型是一個有序的字典,它其實就是比普通字典多了一個順序。

print('OrderedDict類型的應用')dic = {}dic['a'] = 'A'dic['b'] = 'B'dic['c'] = 'C'odic = OrderedDict()odic['a'] = 'A'odic['b'] = 'B'odic['c'] = 'C'print('無序字典:',dic)print('有序字典:',odic)print('\n\n')

namedtup類型,一個類似於字典的元組,可以轉化為字典

print('namedtup類型的應用')deng = namedtuple('deng',['x','y'])i = deng(x = 11,y = 12)print('i的值為:', i )print('將兩個值相加:',i[0]+i[1])print('用屬性的方式相加:',i.x+i.y)m,n = iprint('類似元組的賦值:',m,n)d = i._asdict()print('轉化為一個字典:',d)



python collection模組中幾種資料結構(Counter、OrderedDict、namedtup)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.