From: Ed S. <sch...@ft...> - 2006-05-18 17:20:50
|
George Nurser wrote: > This is a very useful thread. Made me think about what the present > arrangement is supposed to do. Great! > Alternatively, instead of transpose, we can simply use zip. > > E.g. (3D) > In [42]: for i,j,k in zip(*xx): > ....: print i,j,k That's interesting. I've never thought of zip as a transpose operation before, but I guess it is ... -- Ed |