fork download
  1. def chunker(iterable, size):
  2. for i in range(0, len(iterable), size):
  3. yield iterable[i:i+size]
  4.  
  5. c = chunker(list(range(25)), 4)
  6. print(list(c))
Success #stdin #stdout 0.04s 9292KB
stdin
Standard input is empty
stdout
[[0, 1, 2, 3], [4, 5, 6, 7], [8, 9, 10, 11], [12, 13, 14, 15], [16, 17, 18, 19], [20, 21, 22, 23], [24]]