0 votes
in Python by
What is the difference between Xrange and range?

1 Answer

0 votes
by

Xrange returns the xrange object while range returns the list, and uses the same memory and no matter what the range size is.

Related questions

0 votes
asked Jan 3 in Python by DavidAnderson
0 votes
asked Nov 15, 2020 in Python by rajeshsharma
...