1
vote
How do I use Python’s itertools.groupby()?
A neato trick with groupby is run length encoding in one line:
[(c,len(list(cgen))) for c,cs in groupby(some_string)]
will give you a list of 2-tuples where the fi …
