Good morning,
I am trying to add elements from one numpy array to the other.
Jack = ["red", "blue", "yellow"]
Louise = ["orange", "green", "purple"]
When I do the following line, it adds the entire array instead of the elements.
Jack.append(Louise)
Out:
[["red", "blue", "yellow"],["orange", "green", "purple"]]
What I want to obtain in the end is:
["red", "blue", "yellow", "orange", "green", "purple]