Szukam wbudowanej funkcji Pythona (lub mechanizmu) do segmentowania listy na wymagane długości segmentów (bez mutowania listy wejściowej). Oto kod mam już:Segmentuj listę w Pythonie
>>> def split_list(list, seg_length):
... inlist = list[:]
... outlist = []
...
... while inlist:
... outlist.append(inlist[0:seg_length])
... inlist[0:seg_length] = []
...
... return outlist
...
>>> alist = range(10)
>>> split_list(alist, 3)
[[0, 1, 2], [3, 4, 5], [6, 7, 8], [9]]
związane http://stackoverflow.com/questions/1915170/split-a-generator -terable-every-n-items-in-pyt hon-splitevery – jfs