Gregg Ward wrote: > >.... > > Does the interpreter actually generate an individual value for everything in > the range 0-9999999? Yes. There is a function called "xrange" that does not generate the individual values. range is faster for small lists. xrange is better for large ones. -- Take a recipe. Leave a recipe. Python Cookbook! http://www.ActiveState.com/pythoncookbook _______________________________________________ ActivePython mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/activepython
