Numpy Array Serialize to String

myNumpyArray = np.random.rand((3,3))
numpyString = str(myNumpyArray.tolist()) 
Friendly Hawk