Medium👤 3-5 years👤 8-15 years 1 min read

What is a decorator in Python?

Asked inAmazonDeloitte
Report issue

Coffee Chat Question

Concept Made Simple

What is a decorator in Python?

🧠Mind Map Answer

Remember It Faster

A decorator is a function that wraps another function to add behavior — logging, timing, auth — without changing its code.

PatternTakes a function, returns a function
Syntax@decorator above the def

⌨️Hands-on Keyboard

Learn by Doing

python
def shout(fn):
    def wrapper(*a, **k):
        return fn(*a, **k).upper()
    return wrapper

@shout
def greet(name):
    return f"hi {name}"

print(greet("john"))
Output
HI JOHN

🔥What If?

Think Beyond the Expected

How do you preserve the original function's name and docstring?

Wrap the inner function with functools.wraps(fn). Otherwise the decorated function reports the wrapper's metadata instead of the original's.

Continue Learning with AI

Take this question deeper with your favourite AI assistant. Pick a depth, copy the prompt, or open it directly — AI is your learning companion, not a shortcut.

Plain-language foundations

I'm preparing for a software engineering interview and want to understand this from scratch, as a beginner.

Topic: Decorators (Python)
Interview question: "What is a decorator in Python?"

Please:
1. Explain the core idea in simple, plain language, using an everyday analogy.
2. Define any technical terms you use.
3. Walk through one small, concrete example.
4. Finish with a single sentence I can easily remember.

Keep the tone friendly and assume I'm new to this topic.
Open inChatGPTGeminiClaude

Was this answer helpful?

Support our platform by exploring our recommended products.

As an Amazon affiliate, purchases through these links may earn us a small commission — at no extra cost to you. It helps keep Full Stack Interview Guru free.

Related Questions