Demonstration of decorators import time def timer(func): def wrapper(*args,**kwargs): start = time.time() result = func(*args,**kwargs) end = time.time() print(f'{func.__name__} ran in {end-start} time') re...