np ndarray tolist

Solutions on MaxInterview for np ndarray tolist by the best coders in the world

showing results for - "np ndarray tolist"
Domenico
11 Jan 2017
1import numpy as np
2>>> np.array([[1,2,3],[4,5,6]]).tolist()
3[[1, 2, 3], [4, 5, 6]]
4