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

TypeError: 'NoneType' object is not callable--python报错

程序员文章站 2024-02-12 17:24:16
...

报错为
TypeError: 'NoneType' object is not callable--python报错
翻译过来为:TypeError:“NoneType”对象不可调用
代码:

def bibao_one():
    Jay = "哎哟不错哦"
    def bibao_two():
        print(Jay)

    return bibao_two()

#执行闭包
execute = bibao_one()

execute()

我们在执行调用函数的时候,把括号去掉就是了,如
TypeError: 'NoneType' object is not callable--python报错

相关标签: Python python