在python数据类型中,list元素可以任意类型组合,而ndarray元素类型必须相同,但是ndarray可以更方便的对多维度数组进行运算,所以在不同的情况下,二者相互转换使用更为方便,本文介绍python中ndarray与list转换的方法。
1、使用tolist()可以将ndarray类型转换为list类型。
import numpy as np class ndarrayToList: def __init__(self): self.array = np.ones((2, 3)) self.list = self.array.tolist() print(type(self.list)) # <class 'list'> main = ndarrayToList()
2、使用np.array(a)可以将List转化成为ndarray。
import numpy as np L1 = [0, 0 ,1, 0, 1 ,0, 1] L2 = [1, 0, 1, 0 ,0 ,1, 0] a=np.array(L1) b=np.array(L2)
以上就是python中ndarray与list转换的方法,希望能对你有所帮助哟~更多python学习推荐:python教程。
(推荐操作系统:windows7系统、Python 3.9.1,DELL G3电脑。)