Python报错 AttributeError:'numpy.ndarray' object has no attribute 'index'

很久之前的笔记了。numpy中的ndarray没有索引,因此需要转为list格式。

解决方法如下:

import numpy as np

array = array.tolist()

 

你可能感兴趣的:(Python,Python,numpy)