Answers for "python how to split a list into equal size chunks"

8

split list into lists of equal length python

[lst[i:i + n] for i in range(0, len(lst), n)]
Posted by: Guest on March-31-2020

Code answers related to "python how to split a list into equal size chunks"

Python Answers by Framework

Browse Popular Code Answers by Language