Python Numpy matrix.tolist()
在Numpy matrix.tolist()方法的帮助下,我们能够通过matrix.tolist()方法将矩阵转换成一个列表。
语法: matrix.tolist()
返回: 返回一个新的列表。
例子#1 :
在这个例子中,我们可以看到,通过传递矩阵,我们能够使用matrix.tolist()方法将其转换为列表。
# 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)
输出:
[[4, 1, 12, 3]]
例子#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)
输出:
[[4, 1, 9], [12, 3, 1], [4, 5, 6]]