Comment puis-je convertir un NumPy tableau à une Liste Python (par exemple [[1,2,3],[4,5,6]] ), et, assez vite?
Réponses
Trop de publicités?Utiliser tolist()
:
import numpy as np
>>> np.array([[1,2,3],[4,5,6]]).tolist()
[[1, 2, 3], [4, 5, 6]]
unutbu
Points
222216
NumPy tableaux ont un tolist méthode:
In [1]: arr=np.array([[1,2,3],[4,5,6]])
In [2]: arr.tolist()
Out[2]: [[1, 2, 3], [4, 5, 6]]