python实现list由于numpy array的转换

实例如下所示:

u = array([[1,2],[3,4]])
m = u.tolist()
#转换为list
m.remove(m[0])
#移除m[0]
m = np.array(m)
#转换为arra

相关推荐