I tried it on here but it can not print the long numbers like this
for i in range(1,222222222222222):
print i
Error:
Traceback (most recent call last):
File "x.py", line 1, in <module>
for i in range(1,222222222222222):
MemoryError
|
I tried it on here but it can not print the long numbers like this
Error:
|
|||||||||||||||||
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Use xrange instead of range. range generates a list, stores it in the memory and performs the loop on each item. This generates memory errors when dealing with quite big numbers. xrange is a generator not a list, items are created on the fly, so it does not harm for the memory I hope this helps |
|||
|
|
|
Use
|
|||||
|
|
You are probably using Python2, where In contrast to this, In Python3, |
|||
|
|
|
Use xrange instead. The range function actually constructs the list in memory, while xrange returns a generator (similar to an iterator), and returns only one number at a time.
See more on the topic here |
||||
|
|
|
Python creates the range before you start the loop, resulting in a huge amount of memory use/oom error. you're better off using xrange, it allocates the range in smaller pieces.
|
|||
|
|
|
you can also create generator using yield on your own:
|
|||
|
|
|
Check this example of While Loop
You can also do the same using "For Loop"
|
|||||||||||||||
|