I am looking for a way to easily split a python array in half.
So that if I have an array:
A = [0,1,2,3,4,5]
I would be able to get:
B = [0,1,2]
C = [3,4,5]
|
|
|
|
|
|
|
If you want a function:
|
||||
|
|
|
While the answers above are more or less correct, you may run into trouble if the size of your array isn't divisible by 2, as the result of |
||
|
|
|
|
A little more generic solution (you can specify the number of parts you want, not just split 'in half'): EDIT: updated post to handle odd list lengths EDIT2: update post again based on Brians informative comments
|
||||||||||
|
|
|
Using list slicing. The syntax is basically
To get the first half of the list, you slice from the first index to
..and the swap the values around to get the second half:
|
||
|
|
|
|
|
||||
|
|
|
I tested, and the double slash is required to force int division in python 3. My original post was correct, although wysiwyg broke in Opera, for some reason. |
|||
|
|