Re: reading list of list to a file

2007-12-09 Thread Pablo Ziliani
Hi Croliina, caroliina escribió: > i made a list of lists Please notice that this problem: > but i cant write it into a file. has nothing to do with this other one: > how do i get the > first string in a sublist? > For the first one, it is impossible to answer without seeing some actual co

Re: reading list of list to a file

2007-12-09 Thread Ismail Dönmez
Sunday 09 December 2007 18:11:00 tarihinde caroliina şunları yazmıştı: > i made a list of lists but i cant write it into a file. how do i get the > first string in a sublist? An easy example: >>> a=[[1,2,3],[4,5,6]] >>> a[0][0] 1 >>> a[1][0] 4 >>> -- Never learn by your mistakes, if you

Re: reading list of list to a file

2007-12-09 Thread Steve Howell
--- caroliina <[EMAIL PROTECTED]> wrote: > > i made a list of lists but i cant write it into a > file. how do i get the > first string in a sublist? > -- Try doing this: print list_of_lists print list_of_lists[0] print list_of_lists[0][0] print list_of_lists[0][0][0] It might give you some i