More Itertools
Sat 17 May 2025
title: "More Itertools" author: "Rj" date: 2019-04-20 description: "List Test" type: technical_note draft: false
import itertools as it
import more_itertools as mit
a = it.count(0, 2)
mit.take(10, a)
[0, 2, 4, 6, 8, 10, 12, 14, 16, 18]
more:
https://github.com/erikrose/more-itertools
Score: 5
Category: basics