Answers for "split array into chunks python"

2

split array into chunks python

a = [1, 2, 3, 4, 5, 6 ,7 ,8 ,9]

splitedSize = 3
a_splited = [a[x:x+splitedSize] for x in range(0, len(a), splitedSize)]

print(a_splited)
# [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
Posted by: Guest on February-27-2021

Code answers related to "split array into chunks python"

Python Answers by Framework

Browse Popular Code Answers by Language