Re: Maximum List size (item number) limit?

2006-01-11 Thread Steve Holden
Kriston-Vizi Janos wrote: Dear Mr. Kern, and Members, Thank you very much for the fast answer, my question became over-simplified. My source code is appended below. It uses two text files (L.txt and GC.txt) as input and merges them. Please find these two files here:

Re: Maximum List size (item number) limit?

2006-01-11 Thread Juho Schultz
Kriston-Vizi Janos wrote: Dear Mr. Kern, and Members, Thank you very much for the fast answer, my question became over-simplified. My source code is appended below. It uses two text files (L.txt and GC.txt) as input and merges them. Both L.txt and GC.txt contains 3000 rows. When

Re: Maximum List size (item number) limit?

2006-01-11 Thread bearophileHUGS
Juho Schultz NIR_mean_l only from lines 1, 4, 7, ... R_mean_l only from lines 2, 5, 8, ... G_mean_l only from lines 3, 6, 9, ... This can be the problem, but it can be right too. The following code is shorter and I hope cleaner, with it maybe Kriston-Vizi Janos can fix his problem. class

Re: Maximum List size (item number) limit?

2006-01-11 Thread Juho Schultz
[EMAIL PROTECTED] wrote: Juho Schultz NIR_mean_l only from lines 1, 4, 7, ... R_mean_l only from lines 2, 5, 8, ... G_mean_l only from lines 3, 6, 9, ... This can be the problem, but it can be right too. I guess he is expecting 3000 elements, not 1000, as he wrote: And I noticed that all

Maximum List size (item number) limit?

2006-01-09 Thread Kriston-Vizi Janos
Dear Members, Is there any possibility to use more than 999 items in a list? Cannot append more than 999 items. The same problem with 'array' type. Is it a result of a default setting maybe? Versions: Python 2.4.1 (No.1, Sep 13 2005, 00:39:20) [GCC 4.0.2 20050901 (prerelease) (SUSE Linux)] on

Re: Maximum List size (item number) limit?

2006-01-09 Thread Robert Kern
Kriston-Vizi Janos wrote: Dear Members, Is there any possibility to use more than 999 items in a list? Yes. Of course. Cannot append more than 999 items. Post the code that's failing for you and the error message it generates. And please read