Hacker News new | past | comments | ask | show | jobs | submit login

You can replace your `integers` function with `itertools.count` (same signature but defaults to starting at 0), and `take` with `itertools.islice`.



Didn't realize I could use `itertools.count`. In fact, it accepts a `start` parameter.

The `take` function is borrowed from Haskell. It feels lot more natural to say/read `take(10, primes())`, than `islice(primes(), 10)`.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: