What are range and xrange ?

devquora
devquora

Posted On: Feb 22, 2018

 

Range returns a list. Xrange object which takes the same memory independent of the range size.

While using range, one can have all items already generated which can consume a lot of memory. Using xrange, one can get the elements one by one i.e. only one element is generated per loop.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Python Interview Questions

     How is Python different from Java?

    Java and Python are way different from each other, but both of them can be useful tools for high-tech developers. Also, ..

    Python Interview Questions

    How does exception handling in Python differ from Java?

    Python uses its own techniques to implement exception handling. <try-except> is the block that can be utilized by..

    Python Interview Questions

    What is a module and package in Python?

    Modules can be defined as the Python files with an extension “.py”. The module name will be same as that of the fil..