I would like to create an array or list with different element size however, I got the output not as expected with a word array written in the middle of the array as in the following:
import numpy as np
lst_2=np.array([1,2,np.repeat(3,3),2],dtype="object")
print(lst_2)
#Output is=[ 1 2 array([3,3,3]) 2]
#lst_2 should be = [1,2,3,3,3,2]......
please any help or suggestion