Challenge: Write Your First Decorator
You have already learned that a decorator in Python is a function that takes another function as its argument and returns a new function that can add extra behavior before or after the original function runs. Decorators are applied using the @decorator_name syntax directly above the function definition. This allows you to modify or enhance functions in a reusable way, without changing their actual code.
Swipe to start coding
Create a decorator called print_status that wraps any function so that it prints "Function started" before calling the function and "Function ended" after the function finishes. The decorator must work with functions that accept any number of arguments.
Løsning
Takk for tilbakemeldingene dine!
single
Spør AI
Spør AI
Spør om hva du vil, eller prøv ett av de foreslåtte spørsmålene for å starte chatten vår
Awesome!
Completion rate improved to 5.88
Challenge: Write Your First Decorator
Sveip for å vise menyen
You have already learned that a decorator in Python is a function that takes another function as its argument and returns a new function that can add extra behavior before or after the original function runs. Decorators are applied using the @decorator_name syntax directly above the function definition. This allows you to modify or enhance functions in a reusable way, without changing their actual code.
Swipe to start coding
Create a decorator called print_status that wraps any function so that it prints "Function started" before calling the function and "Function ended" after the function finishes. The decorator must work with functions that accept any number of arguments.
Løsning
Takk for tilbakemeldingene dine!
single