Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumPythondecorators with argumentsSingle-choice MCQ

What is printed by this decorator-stacking example?

def a(f): print("a applied") return f def b(f): print("b applied") return f @a @b def fn(): pass