I have a numpy.dtype that resembles the following:
dtype([('value1','<f8'),('value2','<f8')...])
I'd like to get the first part of each tuple (i.e. the value part) into a list, and the second part of each tuple into a separate list. The dtype object does not appear to be an iterable. How do I go about generating these lists? Thank you.