groupby behaviour
Ian Kelly
ian.g.kelly at gmail.com
Tue Feb 26 11:53:13 EST 2013
More information about the Python-list mailing list
Tue Feb 26 11:53:13 EST 2013
- Previous message (by thread): groupby behaviour
- Next message (by thread): groupby behaviour
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Tue, Feb 26, 2013 at 9:27 AM, andrea crotti <andrea.crotti.0 at gmail.com> wrote: > So I was trying to use groupby (which I used in the past), but I > noticed a very strange thing if using list on > the result: As stated in the docs: """ The returned group is itself an iterator that shares the underlying iterable with groupby(). Because the source is shared, when the groupby() object is advanced, the previous group is no longer visible. So, if that data is needed later, it should be stored as a list: """
- Previous message (by thread): groupby behaviour
- Next message (by thread): groupby behaviour
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list