>>> student = np.dtype([('name','S20'), ('age', 'i1'), ('marks', 'f4')])>>> a=np.array([('abc',21,50),('xyz',18,75)],dtype=student)>>> print(a)
[(b'abc', 21, 50.) (b'xyz', 18, 75.)]
这为啥变成bool 型?
添加回答
举报
0/150
提交
取消