Re: list manipulation problem
- To: mathgroup at smc.vnet.net
- Subject: [mg9096] Re: list manipulation problem
- From: jason at pernet.com (Jason Welter)
- Date: Mon, 13 Oct 1997 23:33:11 -0400
- Sender: owner-wri-mathgroup at wolfram.com
On 9 Oct 1997 01:42:53 -0400, Teemu Vesanen <Teemu.Vesanen at sci.fi> wrote: >I have a list like >{{a, b, c}, {d, e, f}, {g, h, i}} >I need to delete the third term of each sublist. >In other words how do I make the list look like >{{a, b}, {d, e}, {g, h}} lista = {{a, b, c}, {d, e, f}, {g, h, i}}; answer = Transpose[{Transpose[lista][[1]],Transpose[lista][[2]]}];