Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How does python count hashable objects with collections.Counter

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

Editor to share with you how python uses collections.Counter to count hashable objects. I hope you will get something after reading this article. Let's discuss it together.

Count hashable objects with collections.Counter

If we need to count the number of elements in the list, there is a very convenient tool in the collections module that can do this. We just need to import counters from the collection and create counter objects with lists as parameters. If we print this, then for each item in the list, we can see the number of times this item appears, and it is sorted, with the most commonly used items first. It would be much better to calculate alone. If we want to get a count of an item, simply visit the item and it will return the corresponding count. If the item is not included, 0 is returned.

From collections import Counter my_list = [10, 10, 10, 5, 5, 2, 9, 9, 9, 9, 9, 9, 9, 9] counter = Counter (my_list) print (counter) # Counter ({9: 6, 10: 3, 5: 2, 2: 1}) print (counter [10]) # 3 after reading this article, I believe you have some understanding of "how python counts hashable objects with collections.Counter". If you want to know more about it. Welcome to follow the industry information channel, thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report