¡@

Home 

python Programming Glossary: roundrobin

Interleaving Lists in Python [duplicate]

http://stackoverflow.com/questions/11125212/interleaving-lists-in-python

semantics you might want to use the far more general roundrobin function from the recipe section of the itertools documentation.. from the recipe section of the itertools documentation def roundrobin iterables roundrobin 'ABC' 'D' 'EF' A D E B F C # Recipe credited.. of the itertools documentation def roundrobin iterables roundrobin 'ABC' 'D' 'EF' A D E B F C # Recipe credited to George Sakkis..

interleaving 2 lists of unequal lengths [duplicate]

http://stackoverflow.com/questions/19883826/interleaving-2-lists-of-unequal-lengths

in x if y is not s 1 'hi' 2 'bye' 3 'no' 'yes' 'why' Using roundrobin recipe from itertools no sentinel value required here from itertools.. no sentinel value required here from itertools import def roundrobin iterables roundrobin 'ABC' 'D' 'EF' A D E B F C # Recipe credited.. here from itertools import def roundrobin iterables roundrobin 'ABC' 'D' 'EF' A D E B F C # Recipe credited to George Sakkis..