I want to share a python trick with you, that I have found to be very useful. And since I want to also find out how to embed gists, I decided to use this post as a testing ground.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import itertools as it | |
def grouper(iterable, n, fillvalue=None): | |
iters = (iter(iterable),) * n | |
return it.zip_longest(*iters, fillvalue=fillvalue) |
This is the easiest (only?) way to group items from an iterator.
Now if I were to use pygments for this snippet, it would look like this:
import itertools as it
def grouper(iterable, n, fillvalue=None):
iters = (iter(iterable),) * n
return it.izip_longest(n, fillvalue=fillvalue, *iters)
Which one looks better?