np ndarray tolist

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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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