Decorators Info
Decorators Info
------------------------
1. A Decorator in Practicality is Also a Function, Which Has The Ability To Add
Some Functionality and Returns The Added Functionality to The Calling Environment
2. By Using Decorators The Programmer Can Add Extended Functionality To The
Existing Functional Code
3. The Concept of Decorators is Also Called as "Meta Programming", in This Case A
Part of The Program Tries To Modify Another Part of The Program At Compile Time
Syntax
---------
@decoratorName
def functionName() :
Definition of The Current Function