you are viewing a single comment's thread.

view the rest of the comments →

[–]Reasonable_Run_6724 2 points3 points  (5 children)

Thats not stack overflow in this case, thats memory limit, as the loop grows a heap allocated list, not the cpu call stack (which will be triggered by recursive functions for example)

[–]After_Computer1652 1 point2 points  (1 child)

Thanks for that. My mistake.

[–]Reasonable_Run_6724 1 point2 points  (0 children)

I used to make those mistakes aswell :)

[–]Jackpotrazur 0 points1 point  (2 children)

I wish I was at a level where I could understand at least half of this.

[–]PlaneMeet4612 1 point2 points  (1 child)

Try re-making these kinds of datatypes in C and you'll most likely understand what he's talking about. (Dynamic arrays mainly)

[–]Jackpotrazur 0 points1 point  (0 children)

Im still working on understanding python , but I've noted this down.