What makes using range() to make the process of generating a quadrillion values in a instant of time, I am amazed by this can anyone answer this question?
I also tried to run my own function but it didn't helped me:
def my_crappy_range(N):
o = 0
while o< N:
yield o
o += 1
return