0
is it possible to Forward declare a Faunction in Python?
3 Answers
+ 2
If your idea came from the concept of forward declaration of function in C/C++ language, then no ...
+ 1
Elobarate your question..
0
def add1(x, y) :
return x+y
def add2(a1, x, y) :
return a1(x, y)+a1(x, y)
print(add2(add1, 3,4))
#output for 2*(x+y)
Is this, your question about?