When you need to count several repeated objects in Python, you can use Counter from collections. This class provides an efficient and Pythonic way to count things without the need for using traditional techniques involving loops and nested data structures. This can make your code cleaner and faster.
In this video course, you learned how to:
- Count several repeated objects using different Python tools
- Create quick and efficient counters with Python’s
Counter - Retrieve the most common objects in a particular counter
- Update and manipulate object counts
- Use
Counterto facilitate further computations - Implement
Counterinstances as multisets
For more information on concepts covered in this course, you can check out:

James on March 10, 2022
Nicely done. Examples are good.