-1
Hello!
Follow down my doubt:
array_a = [1,2,3]
array_b = [1,2,3]
array_c = [1,2,3]
I’d like them to look like this:
array_reshaped = 
  [[1, 1, 1],
   [2, 2, 2],
   [3, 3, 3]]
Could I perform this operation in python using the numpy.reshape?
It is not enough just to calculate the transposed matrix?
– Woss
The zip alone does not serve?
– Isis Binder