Why or why not?
|
|
|||||||
|
|
|
For performance, especially when you're iterating over a large range, xrange() is usually better. However, there are still a few cases why you might prefer range():
[Edit] There are a couple of posts mentioning how range() will be upgraded by the 2to3 tool. For the record, here's the output of running the tool on some sample usages of range() and xrange()
As you can see, when used in a for loop or comprehension, or where already wrapped with list(), range is left unchanged. |
|||
|
|
|
No, they both have their uses: Use
rather than:
On the other hand, use
|
||
|
|
|
|
Okay, everyone here as a different opinion as to the tradeoffs and advantages of xrange versus range. They're mostly correct, xrange is an iterator, and range fleshes out and creates an actual list. For the majority of cases, you won't really notice a difference between the two. (You can use map with range but not with xrange, but it uses up more memory.) What I think you rally want to hear, however, is that the preferred choice is xrange. Since range in Python 3 is an iterator, the code conversion tool 2to3 will correctly convert all uses of xrange to range, and will throw out an error or warning for uses of range. If you want to be sure to easily convert your code in the future, you'll use xrange only, and list(xrange) when you're sure that you want a list. I learned this during the CPython sprint at PyCon this year (2008) in Chicago. |
||||
|
|
|
range() returns a list, xrange() returns an xrange object. xrange() is a bit faster, and a bit more memory efficient. But the gain is not very large. The extra memory used by a list is of course not just wasted, lists have more functionality (slice, repeat, insert, ...). Exact differences can be found in the documentation. There is no bonehard rule, use what is needed. Python 3.0 is still in development, but IIRC range() will very similar to xrange() of 2.X and list(range()) can be used to generate lists. |
||
|
|
|
|
Go with range for these reasons: 1) xrange will be going away in newer Python versions. This gives you easy future compatibility. 2) range will take on the efficiencies associated with xrange. |
||||
|
|
|
You should favour range() over xrange() only when you need an actual list. For instance, when you want to modify the list returned by range(), or when you wish to slice it. For iteration or even just normal indexing, xrange() will work fine (and usually much more efficiently). There is a point where range() is a bit faster than xrange() for very small lists, but depending on your hardware and various other details, the break-even can be at a result of length 1 or 2; not something to worry about. Prefer xrange(). |
||
|
|
|
|
Unless I specifically need a list for something, I always favor |
||
|
|
