有没有可能在不完全定义函数的情况下调用它?当我尝试这样做的时候,我得到了一个错误: “ Function _ name没有被定义”。我来自 C + + 背景,所以这个问题难倒了我。
在工作之前声明函数:
def Kerma():
return "energy / mass"
print Kerma()
然而,尝试在不首先定义函数的情况下调用该函数会带来麻烦:
print Kerma()
def Kerma():
return "energy / mass"
In C++, you can declare a function after the call once you place its header before it.
我错过了什么吗?