功能:不破坏目标函数原有的代码和功能的前提下,为目标函数增加新功能
#装饰器的一般写法(闭包)
def outer(func):
def inner():
print("我睡觉了")
func()
print("我起床了")
return inner
@outer
def sleep():
import random
import time
print("睡眠中")
time.sleep(random.randint(1,5))
sleep()