<DIV>Dear NCL team or users,</DIV>
<DIV>      Hello, every body! It's kind for you all to read my letter! </DIV>
<DIV>      It was known that NCL have a data struction called list, into which we can store different types of data together. But I got confused about its operation to get an exact data from a list. To make my question more clearly, set the following codes as an example:</DIV>
<DIV> </DIV>
<DIV>> begin</DIV>
<DIV>> a = (/1,2,3/)</DIV>
<DIV>> b = (/3,4,5,6,7/)</DIV>
<DIV>> c = (/"one","two"/)</DIV>
<DIV>> lista = [/a,b,c/]</DIV>
<DIV>> print(lista[2])</DIV>
<DIV>> end </DIV>
<DIV> </DIV>
<DIV>As a result, in the screen, it will be:</DIV>
<DIV> </DIV>
<DIV>> Variable: c<BR>> Type: string<BR>> Total Size: 8 bytes<BR>>                 2 values<BR>> Number of Dimensions: 1<BR>> Dimensions and sizes:   [2]<BR>> Coordinates:<BR>> (0)     one<BR>> (1)     two<BR></DIV>
<DIV>     My question is that, list[2] will get the third array in the list, but how can I get the elements in the third array one by one? how can I index "two" in my ncl script when I need to read it out?</DIV>
<DIV>     I feel sorry to disturb you, but I do need a help. Again, thanks for reading my letter! </DIV>
<DIV> </DIV>
<DIV>Cheers,</DIV>
<DIV align=left>Lucky</DIV>