>>> print type(range(5)) <type 'list'> >>> print type(xrange(5)) <type 'xrange'>
用xrange会比range性能优很多,因为不需要一上来就开辟一块很大的内存空间。