简体   繁体   中英

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

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'

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.

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM