What is the difference between range and xrange functions in Python 2.X?

后端 未结 28 2038
深忆病人
深忆病人 2020-11-22 03:14

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

28条回答
  •  一向
    一向 (楼主)
    2020-11-22 04:08

    range generates the entire list and returns it. xrange does not -- it generates the numbers in the list on demand.

提交回复
热议问题