Hacker News new | ask | show | jobs
by BerislavLopac 2912 days ago
It's not just repetitive; this particular example actually creates a list before starting the external loop -- imagine it with range(100000000) or something. It is better if you replace [] with (), which creates a generator.
1 comments

`range()` also takes an optional `step` argument which would help here.