0
Why memory error takes place.
even = [2*i for i in range(10**100)]
3 Respostas
+ 2
Try it with something smaller. E.g. this works:
even = [2*i for i in range(500)]
print(even)
+ 1
What's the code you're having troubles with?
+ 1
Already specified above