You know that the @
symbol applies a decorator to a function, but what does that really mean?
Let's learn about decorators by writing our own.
During this tutorial we'll learn:
- The super powers hiding in Python's functions (which power decorators)
- The oddly simple purpose of the decorator syntax
- Common applications of decorators in Python
- When and how to use (and when to avoid) decorators