Re: List to Tuple and Tuple to List?

2007-11-07 Thread Wildemar Wildenburger
Davy wrote: > Hi all, > > I am curious about whether there is function to fransform pure List to > pure Tuple and pure Tuple to pure List? > Isn't that just the same topic as in your other thread? I think it is somewhat unfriendly that you ignore that one. It makes me feel that you see this grou

Re: List to Tuple and Tuple to List?

2007-11-06 Thread Boris Borcic
Davy wrote: > Hi all, > > I am curious about whether there is function to fransform pure List to > pure Tuple and pure Tuple to pure List? > > For example, > > I have list L = [[1,2,3],[4,5,6]] > something list2tuple() will have T=list2tuple(L)=((1,2,3),(4,5,6)) > > And the tuple2list() > > An

Re: List to Tuple and Tuple to List?

2007-11-06 Thread Paul Hankin
On Nov 6, 11:18 am, Davy <[EMAIL PROTECTED]> wrote: > Hi all, > > I am curious about whether there is function to fransform pure List to > pure Tuple and pure Tuple to pure List? > > For example, > > I have list L = [[1,2,3],[4,5,6]] > something list2tuple() will have T=list2tuple(L)=((1,2,3),(4,5,

List to Tuple and Tuple to List?

2007-11-06 Thread Davy
Hi all, I am curious about whether there is function to fransform pure List to pure Tuple and pure Tuple to pure List? For example, I have list L = [[1,2,3],[4,5,6]] something list2tuple() will have T=list2tuple(L)=((1,2,3),(4,5,6)) And the tuple2list() Any suggestions are welcome! Best regar