generate functionThu, 13 Apr 2023
divide list ['a', 'b', 'c', '1', '2', '3'] into three separate list
def divide_list(l, a, b): return l[:a], l[a:b], l[b:] divide_list(['a', 'b', 'c', '1', '2', '3'], 2, 5) >> (['a', 'b'], ['c', '1', '2'], ['3'])
Python
Generate More