One liner solution in Clear category for Split List by OrginalS
split_list = lambda i: [i[:(len(i)+1)//2],i[(len(i)+1)//2:]]
May 3, 2020