Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyPythonitertoolsSingle-choice MCQ1,800 views

What does this print?

import itertools c = itertools.cycle("ab") print([next(c) for _ in range(5)])