Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1-liner solution in Creative category for Split List by Stensen
split_list = lambda i: [i[:__import__('math').ceil(len(i)/2)], i[__import__('math').ceil(len(i)/2):]] if i else [[], []]
Sept. 21, 2020