我的代码有问题。
这是__init__
的一部分:
file = np.loadtxt(file_path,delimiter = ",",skiprows=1)
header = np.loadtxt(file_path,delimiter = ",",dtype=str)
self.data = file
self.header = header[0]
这是方法的一部分:
def hello(self,col_name)
col = self.header.where[a == col_name]
return col
然后我想检查是否获得标题的索引:
print (name.hello('hi'))
但得到:"AttributeError: 'numpy.ndarray' object has no attribute 'where'"