Answers for "split a list into n parts python"

1

split list into list of lists python on every n element

big_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]
x = 4
list_of_lists = [big_list[i:i+x] for i in range(0, len(big_list), x)]
# [[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12], [13, 14, 15, 16]]
Posted by: Guest on September-10-2020
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
0

python divide array into n parts

def split(a, n):
    k, m = divmod(len(a), n)
    return (a[i * k + min(i, m):(i + 1) * k + min(i + 1, m)] for i in range(n))
print( list(split(range(11), 3)) )  # [[0, 1, 2, 3], [4, 5, 6, 7], [8, 9, 10]]
Posted by: Guest on June-10-2020

Code answers related to "split a list into n parts python"

Python Answers by Framework

Browse Popular Code Answers by Language