Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to call a function before defining it in python? [duplicate]

How can I define a prototype of a function? I called my function above of its definition. but it did not work. python interpreter cannot recognize my function.

For example:

my_function()
...
def my_function():
    print("Do something...")
Unresolved reference 'my_function'
like image 775
Arman Laalfam Avatar asked Oct 18 '25 00:10

Arman Laalfam


2 Answers

You can't. Within the same scope, code is executed in the order it is defined.

In Python, a function definition is an executable statement, part of the normal flow of execution, resulting in the name being bound to the function object. Next, names are resolved (looked up) at runtime (only the scope of names is determined at compile time).

This means that if you define my_function within a module or function scope, and want to use it in the same scope, then you have to put the definition before the place you use it, the same way you need to assign a value to a variable name before you can use the variable name. Function names are just variables, really.

You can always reference functions in other scopes, provided those are executed after the referenced function has been defined. This is fine:

def foo():
    bar()

def bar():
    print("Do something...")

foo()

because foo() is not executed until after bar() has been defined.

like image 96
Martijn Pieters Avatar answered Oct 20 '25 14:10

Martijn Pieters


Only after main() function,

#!/usr/local/bin/python

def main ():
  my_function()

def my_function():
  print("Do something...")

if __name__ == "__main__":
  main ()

def statements are really executable statements and not declarations, Order is important here.

like image 25
Purushoth.Kesav Avatar answered Oct 20 '25 14:10

Purushoth.Kesav



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!