# In[1]name=['Alice','Bob','Cathy','Doug']age=[25,45,37,19]weight=[55.0,85.5,68.0,61.5]# In[2]data=np.zeros(4,dtype={'names':('name','age','weight'),'formats':('U10,'i4','f8')})print(data.dtype)# Out[2][('name', 'U10 means Unicode string of maximum length 10, i4 means 4 byte integer, and f8 means 8 byte float.We can fill the array with our lists of values.# In[3]data['name']=namedata['age']=aged..