Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lære Challenge: Decorate Multiple Functions | Decorator Fundamentals
Python Decorators Explained

bookChallenge: Decorate Multiple Functions

Decorators in Python are designed to be reusable, meaning you can apply the same decorator to many different functions. This flexibility allows you to add the same behavior—such as logging, timing, or validation—to multiple functions without repeating code. By defining a decorator once and then applying it wherever needed, you keep your codebase clean and consistent. When a decorator is applied to more than one function, each function will receive the additional functionality provided by the decorator, but the core logic of each function remains unchanged. This approach is especially powerful for cross-cutting concerns like debugging or monitoring, where you want to add the same action to various parts of your program.

Oppgave

Swipe to start coding

Create a decorator named log_function_name that logs the name of any function it decorates before the function is called. Apply this decorator to both greet and add. When either function is called, the decorator must print the function's name before executing the function and returning its result.

Løsning

Alt var klart?

Hvordan kan vi forbedre det?

Takk for tilbakemeldingene dine!

Seksjon 1. Kapittel 4
single

single

Spør AI

expand

Spør AI

ChatGPT

Spør om hva du vil, eller prøv ett av de foreslåtte spørsmålene for å starte chatten vår

close

bookChallenge: Decorate Multiple Functions

Sveip for å vise menyen

Decorators in Python are designed to be reusable, meaning you can apply the same decorator to many different functions. This flexibility allows you to add the same behavior—such as logging, timing, or validation—to multiple functions without repeating code. By defining a decorator once and then applying it wherever needed, you keep your codebase clean and consistent. When a decorator is applied to more than one function, each function will receive the additional functionality provided by the decorator, but the core logic of each function remains unchanged. This approach is especially powerful for cross-cutting concerns like debugging or monitoring, where you want to add the same action to various parts of your program.

Oppgave

Swipe to start coding

Create a decorator named log_function_name that logs the name of any function it decorates before the function is called. Apply this decorator to both greet and add. When either function is called, the decorator must print the function's name before executing the function and returning its result.

Løsning

Switch to desktopBytt til skrivebordet for virkelighetspraksisFortsett der du er med et av alternativene nedenfor
Alt var klart?

Hvordan kan vi forbedre det?

Takk for tilbakemeldingene dine!

Seksjon 1. Kapittel 4
single

single

some-alt