โ๏ธ Code CompletionPY Python Hard+35 XP
Decorator Syntax
Complete the decorator pattern.
โ๏ธ Fill in the blank
def timer(func):
def wrapper(*args, **kwargs):
start = time.time()
result = func(*args, **kwargs)
print(f"Took {time.time() - start}s")
return ___
return wrapper