Python · Generators & Iterators
What does this print? ``` import itertools c = itertools.count(10, 2) out = list(itertools.islice(c, 3)) print(out) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
