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