I\'m not sure if I need a lambda, or something else. But still, I need the following:
I have an array = [1,2,3,4,5]. I need to put this array, for insta
array = [1,2,3,4,5]
for item in array: array2.append (item)
Or, in this case:
array2 += array