Python装饰器遇到的一个问题
def wrapper(func):def inner():
print("I am the inner from the wrapper...")
return inner
@wrapper
def caller():
print("I am the caller...")
================
调用caller():
I am the inner from the wrapper...
===============
问题:caller原来的print语句呢?