Con la ayuda del Numpy matrix.tolist()
método, podemos convertir la array en una lista usando el matrix.tolist()
método.
Sintaxis:
matrix.tolist()
Return : Devuelve una nueva lista
Ejemplo #1:
En este ejemplo podemos ver que al pasar la array podemos convertirla en una lista usando el matrix.tolist()
método.
# import the important module in python import numpy as np # make matrix with numpy gfg = np.matrix('[4, 1, 12, 3]') # applying matrix.tolist() method geek = gfg.tolist() print(geek)
Producción:
[[4, 1, 12, 3]]
Ejemplo #2:
# import the important module in python import numpy as np # make matrix with numpy gfg = np.matrix('[4, 1, 9; 12, 3, 1; 4, 5, 6]') # applying matrix.tolist() method geek = gfg.tolist() print(geek)
Producción:
[[4, 1, 9], [12, 3, 1], [4, 5, 6]]
Publicación traducida automáticamente
Artículo escrito por Jitender_1998 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA