Challenge: Creating Function Decorators
Test your knowledge of creating simple decorators in Python.
We'll cover the following...
Overview
Create a simple function decorator. Your decorator should calculate the execution time of that function that it decorates. ...