Search Results

0
votes

How do I use Python’s itertools.groupby()?

A correction to answer by @nt: [(c,len(list(cs))) for c,cs in groupby(some_string)] Thanks, the lis …