def w(f): def inner(): print(1) f() print(2) return inner @w def f(): print("我是正式代码") f() 效果: 1 我是正式代码 2