Skip to content

Latest commit

 

History

History
4 lines (3 loc) · 362 Bytes

README.md

File metadata and controls

4 lines (3 loc) · 362 Bytes

Decorators

Decorators are a very powerful and useful tool in Python. Because it allows programmers to modify the behaviour of a function or class. Decorators allow us to wrap another function in order to extend the behaviour of the wrapped function, without permanently modifying it.

Thanks to Miuul Extras, I have grasped the concept of decorator in python!