Hacker News new | ask | show | jobs
by a_t48 1629 days ago

    lst = [range(0, 10, 2)]
1 comments

That's wrong in multiple ways. You want

    lst = list(range(0, 20, 2))
Ohh, yeah, you're right.
Even simpler!