Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
Python
easy
Python
itertools
Single-choice MCQ
1,800 views
What does this print?
import itertools c = itertools.cycle("ab") print([next(c) for _ in range(5)])