Fix exercise 51: deprecated (type, 1) structured dtype -> scalar fields (source ktx only; maintainer regenerates outputs)

This commit is contained in:
AmitSubhash
2026-07-21 21:03:27 +05:30
committed by Amit T Subhash
parent bc7d42eb84
commit 6c091f3a12

View File

@@ -633,11 +633,11 @@ Create a structured array representing a position (x,y) and a color (r,g,b) (★
hint: dtype hint: dtype
< a51 < a51
Z = np.zeros(10, [ ('position', [ ('x', float, 1), Z = np.zeros(10, [ ('position', [ ('x', float),
('y', float, 1)]), ('y', float)]),
('color', [ ('r', float, 1), ('color', [ ('r', float),
('g', float, 1), ('g', float),
('b', float, 1)])]) ('b', float)])])
print(Z) print(Z)
< q52 < q52