019、(此处转自科赛网)
import numpy as np
>>> a = np.ones(10, [ ('position', [ ('x', float, 1),
('y', float, 1)]),
('color', [ ('r', float, 1),
('g', float, 1),
('b', float, 1)])])
>>> a
array([((1., 1.), (1., 1., 1.)), ((1., 1.), (1., 1., 1.)),
((1., 1.), (1., 1., 1.)), ((1., 1.), (1., 1., 1.)),
((1., 1.), (1., 1., 1.)), ((1., 1.), (1., 1., 1.)),
((1., 1.), (1., 1., 1.)), ((1., 1.), (1., 1., 1.)),
((1., 1.), (1., 1., 1.)), ((1., 1.), (1., 1., 1.))],
dtype=[('position', [('x', '
>>> print(a)
[((1., 1.), (1., 1., 1.)) ((1., 1.), (1., 1., 1.))
((1., 1.), (1., 1., 1.)) ((1., 1.), (1., 1., 1.))
((1., 1.), (1., 1., 1.)) ((1., 1.), (1., 1., 1.))
((1., 1.), (1., 1., 1.)) ((1., 1.), (1., 1., 1.))