performance problem in python 2.2
John Hunter
jdhunter at nitace.bsd.uchicago.edu
Fri Jul 26 16:31:32 EDT 2002
More information about the Python-list mailing list
Fri Jul 26 16:31:32 EDT 2002
- Previous message (by thread): performance problem in python 2.2
- Next message (by thread): performance problem in python 2.2
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
>>>>> "Jeff" == Jeff Davis <jdavis at empires.org> writes: Jeff> for i in range(1,c): ^ whole list in memory for i in xrange(1,c): ^ slurps off the list as necessary Should help quite a bit... John Hunter
- Previous message (by thread): performance problem in python 2.2
- Next message (by thread): performance problem in python 2.2
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list