Redus Russ

Generation

generate functionMon, 06 Feb 2023

make 2 arrays then put them both arrays in another array

def make_array(a, b): return [a, b] def make_two_arrays(a, b): return [make_array(a,b), make_array(b,a)] make_two_arrays(1,2)

Questions about programming?Chat with your personal AI assistant