Everything You Need to Know About @Decorators in Python with Examples

Everything You Need to Know About @Decorators in Python with Examples

Author
winstonmhango23
Published
June 23, 2024
Reading Time
7 min read
Views
337
Decorators in Python are a powerful and expressive tool that allows for the modification of functions or methods using other functions
def my_decorator(func):
    def wrapper():
        print("Something is happening before the function is called.")
        func()
        print("Something is happening after the function is called.")
    return wrapper

@my_decorator
def say_hello():
    print("Hello!")

say_hello()
Something is happening before the function is called.
Hello!
Something is happening after the function is called.
def log_decorator(func):
    def wrapper(*args, **kwargs):
        print(f"Function '{func.__name__}' is called with arguments: {args} {kwargs}")
        result = func(*args, **kwargs)
        print(f"Function '{func.__name__}' returned: {result}")
        return result
    return wrapper

@log_decorator
def add(a, b):
    return a + b

add(3, 4)
Function 'add' is called with arguments: (3, 4) {}
Function 'add' returned: 7
def add_attributes(cls):
    cls.new_attribute = "This is a new attribute"
    return cls

@add_attributes
class MyClass:
    pass

obj = MyClass()
print(obj.new_attribute)
This is a new attribute
import time

def timer_decorator(unit="seconds"):
    def decorator(func):
        def wrapper(*args, **kwargs):
            start_time = time.time()
            result = func(*args, **kwargs)
            end_time = time.time()
            duration = end_time - start_time
            if unit == "milliseconds":
                duration *= 1000
            print(f"Function '{func.__name__}' took {duration} {unit}")
            return result
        return wrapper
    return decorator

@timer_decorator(unit="milliseconds")
def slow_function():
    time.sleep(1)

slow_function()
Function 'slow_function' took 1000.123456 milliseconds
class BankAccount:
    def __init__(self, account_id, name, balance=0):
        self.account_id = account_id
        self.name = name
        self.balance = balance

    def deposit(self, amount):
        self.balance += amount

    def withdraw(self, amount):
        if amount <= self.balance:
            self.balance -= amount
        else:
            print("Insufficient funds")

    def get_balance(self):
        return self.balance

class SavingsAccount(BankAccount):
    def __init__(self, account_id, name, balance=0):
        super().__init__(account_id, name, balance)
        self.interest_rate = 0.02  # 2% interest rate

    def apply_interest(self):
        self.balance += self.balance * self.interest_rate

class LoanAccount(BankAccount):
    def __init__(self, account_id, name, balance=0):
        super().__init__(account_id, name, balance)
        self.loan_amount = 0

    def request_loan(self, amount):
        self.loan_amount += amount

    def repay_loan(self, amount):
        if amount <= self.loan_amount:
            self.loan_amount -= amount
        else:
            print("Overpayment")
def log_decorator(func):
    def wrapper(*args, **kwargs):
        print(f"Calling {func.__name__} with {args} and {kwargs}")
        result = func(*args, **kwargs)
        print(f"{func.__name__} returned {result}")
        return result
    return wrapper
def interest_rate_decorator(rate):
    def decorator(func):
        def wrapper(*args, **kwargs):
            account = args[0]
            account.balance += account.balance * rate
            print(f"Interest applied at rate {rate*100}%")
            return func(*args, **kwargs)
        return wrapper
    return decorator
@log_decorator
@interest_rate_decorator(rate=0.05)  # 5% interest rate
def apply_interest(account):
    pass

# Example usage
savings = SavingsAccount("001", "John Doe", 1000)
apply_interest(savings)
print(savings.get_balance())  # Output: 1050.0
class PremiumAccount(SavingsAccount, LoanAccount):
    def __init__(self, account_id, name, balance=0):
        SavingsAccount.__init__(self, account_id, name, balance)
        LoanAccount.__init__(self, account_id, name, balance)

@log_decorator
@interest_rate_decorator(rate=0.03)  # 3% interest rate
def apply_premium_interest(account):
    pass

# Example usage
premium = PremiumAccount("002", "Jane Smith", 2000)
apply_premium_interest(premium)
print(premium.get_balance())  # Output: 2060.0
premium.request_loan(5000)
print(premium.loan_amount)  # Output: 5000

Share this article

Stay Updated

Subscribe to our newsletter for new course alerts, learning tips, and exclusive offers.

We respect your privacy. Unsubscribe at any time.

Discussion (0)

Be the first to comment on this article

winstonmhango23

Technical Writer & Developer

Table of Contents

Stay Updated! Join our waitlist to get notified about new courses.

© 2025 .