---
݁˖ೃ ✿
Day 18: Exploring Python Decorators ✿ ݁˖ೃ
Welcome to Day 18! 🎉 Today, we’re delving into
Python decorators, a fascinating feature that lets you modify or extend the behavior of functions and methods without altering their original code. Let’s explore how decorators work and how you can use them effectively. 🚀
---
݁˖ೃ ✿
1. What are Decorators? ✿ ݁˖ೃ
A decorator is a function that takes another function as input, adds functionality to it, and returns the modified function. Decorators are commonly used for logging, validation, access control, and more.
---
݁˖ೃ ✿
2. How Do Decorators Work? ✿ ݁˖ೃ
You can apply a decorator to a function using the
@decorator_name syntax.
Example: # Define a decorator
def greet_decorator(func):
def wrapper():
print("Hello!")
func()
print("Goodbye!")
return wrapper
# Use the decorator
@greet_decoratordef say_name():
print("My name is Alice.")
# Call the function
say_name()
Output: Hello!
My name is Alice.
Goodbye!
---
݁˖ೃ ✿
3. Applying Multiple Decorators ✿ ݁˖ೃ
You can stack multiple decorators on a single function. They are applied from top to bottom.
Example: def bold_decorator(func):
def wrapper():
print("
", end="")
func()
print("", end="")
return wrapper
def italic_decorator(func):
def wrapper():
print("
", end="")
func()
print("", end="")
return wrapper
@bold_decorator@italic_decoratordef display_text():
print("Hello, World!", end="")
# Call the function
display_text()
Output: Hello, World! ---
݁˖ೃ ✿
4. Decorators with Arguments ✿ ݁˖ೃ
You can create decorators that accept arguments by adding an extra layer of functions.
Example: def repeat_decorator(times):
def decorator(func):
def wrapper(*args, **kwargs):
for _ in range(times):
func(*args, **kwargs)
return wrapper
return decorator
@repeat_decorator(3)
def say_hello(name):
print(f"Hello, {name}!")
# Call the function
say_hello("Alice")
Output: Hello, Alice!
Hello, Alice!
Hello, Alice!
---
݁˖ೃ ✿
5. Built-in Decorators ✿ ݁˖ೃ
Python provides built-in decorators like
@staticmethod,
@classmethod, and
@property.
Example (staticmethod): class MathUtils:
@staticmethod def add(a, b):
return a + b
print(MathUtils.add(5, 3)) # Output: 8
---
݁˖ೃ ✿
Practice Challenge ✿ ݁˖ೃ
1. Write a decorator to log the execution time of a function.
2. Create a decorator that validates the input of a function (e.g., ensuring a number is positive).
3. Implement a decorator to format a string as bold and italic (like HTML tags).
---
Tomorrow, we’ll dive into
regular expressions, an essential tool for text manipulation and pattern matching. Get ready for another exciting day of learning! 💡✨