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)