Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumPythonfunctoolsSingle-choice MCQ

What does this code print?

from functools import reduce\nimport operator\nprint(reduce(operator.mul, [1, 2, 3]))