Yahoo Interview Question

What is the different between range and xrange in Python.

Interview Answer

Anonymous

Jun 11, 2019

range is list comprehension which may waste memory. xrange is generator which available in Python 3.0.