Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Decorator

  • A decorator is a function that takes another function and extends the behavior of the latter function without explicitly modifying it.

Decorator as function

  • code

  • Run this from your shell:

    python decorator_as_function.py

Decorator as class

  • code
  • Run this from your shell:
    python decorator_as_class.py

Examples