欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

报错:TypeError: 'NoneType' object is not callable问题解决

程序员文章站 2024-02-12 17:23:58
...

报错:TypeError: 'NoneType' object is not callable问题解决方法

def dec(function):
    print("start...")
    function()
    print("end...")
#修饰器
@dec
def say():
    print("say...")
#执行报错:TypeError: 'NoneType' object is not callable
say()
# 解决方法:调用函数时去掉括号
say