编程语言
首页 > 编程语言> > python中的@的使用

python中的@的使用

作者:互联网

在python中,@是一个装饰器,针对某个函数,起调用传参的作用。具体怎么用的可以参考如下代码:


def A(fn):
    print("a")
    fn()

def B():
    print("b")

@A
def C():
    print("c")

运行结果:


a
c

可以看到,python从上而下定义了 A B以后,在遇到@时,首先将C定义后,将其作为参数传入A,并进行调用。从结果中可以看出,A中的fn其实就是C。

标签:传参,调用,python,fn,使用,print,def
来源: https://www.cnblogs.com/RBLstudying/p/16601964.html