Skip to content

Instantly share code, notes, and snippets.

@thanakijwanavit
Created April 1, 2021 05:49
Show Gist options
  • Save thanakijwanavit/b4fbce51929d3fd7fefbffd0dab070b1 to your computer and use it in GitHub Desktop.
Save thanakijwanavit/b4fbce51929d3fd7fefbffd0dab070b1 to your computer and use it in GitHub Desktop.
chunking a list
def chunk(items:(list, str), sz:int)->Iterable:
return [items[i:i + sz] for i in range(0, len(items), sz)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment