I am having two functions, one is defined before the use, positioned above the one which is calling it
def func1():
def func2():
func1()
But I am getting the error: name “func1” is not defined, why is that?
1
I am having two functions, one is defined before the use, positioned above the one which is calling it
def func1():
def func2():
func1()
But I am getting the error: name “func1” is not defined, why is that?
1