Python groupby() pitfalls
Pitfall 1 - Iterable is not sorted
The iterable needs to be sorted on the same key as you are trying to group it by, before applying the groupby() method.
Below is a barebones example showing what happens when the iterable is not sorted
>>> from iter...
karanparekh.dev3 min read