Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1-liner: import numpy as np solution in 3rd party category for Split List by Stensen
import numpy as np
split_list = lambda l: [i.tolist() for i in np.array_split(l, 2)]
Sept. 24, 2020