convert array to list python

30

convert array to list python -

import numpy as np
arrayOne
listOne = arrayOne.tolist()

python numpy array to list -

# Basic syntax:
numpy_array.tolist()

# Example usage:
your_array = np.array([[1, 2, 3], [4, 5, 6]])
your_array
--> array([[1, 2, 3],
           [4, 5, 6]])

your_array.tolist()
--> [[1, 2, 3], [4, 5, 6]]

Comments

Submit
0 Comments