running当我执行use_logging(bar)()时,输出为_deco is running。输出:bar is running我想知道为什么在执行use_logging(bar)()时会显示_deco is running,以及它是如何工作的另外,我在def _deco():之前添加了print ("hhhhhhh"),代码如下: print ("hhhhhh
(x): print("before the deco") print("after the decowow(12))before the decoafter the deco所以每当deco返回时,调用包装器函数,现在我不明白的是,为什么我们使用包装器,而我们的主要目标是将new_func作为参数传递给<