Apparently xrange is faster but I have no idea why it's faster (and no proof besides the anecdotal so far that it is faster) or what besides that is different about
for i in range(0, 20):
for i in xrange(0, 20):
|
|
|
|
|
|
|
range creates a list, so if you do range(1, 10000000) it creates a list in memory with 10000000 elements. xrange is a generator, so it evaluates lazily. |
||
|
|
|
|
Remember, use the timeit module to test which of small snipps of code is faster!
Personally, I always use range(), unless I were dealing with really huge lists -- as you can see, time-wise, for a list of a million entries, the extra overhead is only 0.04 seconds. And as Corey points out, in Python 3.0 xrange will go away and range will give you nice iterator behaviour anyway. |
||
|
|
|
|
This brings you two advantages:
|
||
|
|
|
|
xrange only stores the range params and generates the numbers on demand. However the C implementation of Python currently restricts its args to C longs:
Note that in Python 3.0 there is only range and it behaves exactly like the 2.x xrange. |
||
|
|
|
|
This is true, but in Python 3, range will be replaced with xrange(). If you need to actually generate the list, you will need to do:
|
|||
|
|
|
It is for optimization reasons. range() will create a list of values from start to end (0 .. 20 in your example). This will become an expensive operation on very large ranges. xrange() on the other hand is much more optimised. it will only compute the next value when needed (via an xrange sequence object) and does not create a list of all values like range() does. |
||
|
|
|
|
Do spend some time with the Library Reference. The more familiar you are with it, the faster you can find answers to questions like this. Especially important are the first few chapters about builtin objects and types.
Another way to find quick information about a Python construct is the docstring and the help-function:
|
||||
|
|
|
xrange uses an iterator (generates values on the fly), range returns a list. |
||
|
|
|
|
range generates the entire list and returns it. xrange does not -- it generates the numbers in the list on demand. |
||
|
|
|
|
xrange returns an iterator and only keeps one number in memory at a time. range keeps the entire list of numbers in memory. |
||
|
|
|
|
see here. |
||
|
|