Cody Bable

Generation

generate functionThu, 13 Apr 2023

divide list ['a', 'b', 'c', '1', '2', '3'] into three separate list

def separate(a, b, c, d, e, f): return [a, b, c], [d, e, f] separate('a', 'b', 'c', '1', '2', '3')

Want to kickstart your project?Use the new AI Studio to create your code