The xrange() Type:
The xrange type is an immutable sequence that is commonly used for looping. The main advantage of xrange() is that an xrange object will always take the same amount of memory no matter the size of the range it represents. Otherwise, there are no consistent performance advantages.
XRange objects support indexing, iteration, and the len() function.

