Syntax Error: xrange in case of range
swad007 opened this issue · 1 comments
swad007 commented
While looping through the for loop xrange is used for finding out the range from where to loop in case of range
kamyu104 commented
The solutions of this repository are mainly written in Python2.
In Python 3, there is no xrange
, but the range
function behaves like xrange
in Python2.
You can replace it yourself if you want to run in Python3.