Skip to content

Latest commit

 

History

History
2 lines (2 loc) · 337 Bytes

README.md

File metadata and controls

2 lines (2 loc) · 337 Bytes

useful_python_decorators

Python Decorators are very powerful and useful tool, it allows programmers to modify the behaviour of function or class. Decorators allows the programmer to wrap another function in order to extend the behavior of wrapped function, without permanently modifying it. This repo provides a few useful decorators.