我有一个结构化数组的对象列表,例如:
a = np.array([('Rex', 9, 81.0), ('Fido', 3, 27.0)], dtype=[('name', 'U10'), ('age', 'i4'), ('weight', 'f4')])
b = np.array([('Dog3', 9, 81.0), ('Dog4', 3, 27.0)], dtype=[('name', 'U10'), ('age', 'i4'), ('weight', 'f4')])
c = np.array([('Dog5', 9, 81.0), ('Dog6', 3, 27.0)], dtype=[('name', 'U10'), ('age', 'i4'), ('weight', 'f4')])
lst = [a, b, c]
现在我需要这个列表本身是一个 numpy 数组,因为我需要在它上面使用numpy.where()它,否则这不起作用。
lst = np.array(lst)
那么我做这样的事情:
ID = np.where(lst == c)
lst[ID] = 0 or rather lst[ID] = None
但不是我想得到的,即
>>>lst
array([a, b, 0/None], dtype=...)
我要么得到这个:
>>>lst
array([a, b, [('0', 0, 0.), ('0', 0, 0.)]], dtype=...)
或者它根本不起作用:
TypeError: int() argument must be a string, a bytes-like object or a number, not 'NoneType'
我怎样才能做到这一点?我必须转换lst回列表拳头吗?
皈依舞
相关分类