**已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
13小时前关门了。
Improve this question
我尝试调用Python程序中的函数,但一直收到错误消息“TypeError:“NoneType”对象不可调用””。我已检查该函数是否定义正确,并且正在传递正确的参数,因此我不确定导致此错误的原因。有人能解释一下此错误的含义以及如何修复它吗?先谢了。
Python版本:3.9.1
def my_function():
# do something
my_function() # this line causes the error
1条答案
按热度按时间xzlaal3s1#
如果没有有关您编写的实际代码的进一步信息,很难说出导致错误的确切原因。但是,导致错误的最可能原因是您试图调用的不是函数。请检查是否在代码的其他位置重新定义了my_function。
您可以找到更多信息here