python 装饰器 第一步:基本函数

# 第一步:基本函数
def eat():
    print('吃饭')
# 调用
eat()
原文地址:https://www.cnblogs.com/zhangboblogs/p/8018586.html