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]]
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]]
how to devided array into parts python
def chunks(l, n):
n = max(1, n)
return (l[i:i + n] for i in range(0, len(l), n))
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us