Is there any way to make possible to use functions in your file before you actually declare their body?
The following code doesn’t seem to work:
abc = myFunction
def myFunction():
print "123"
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can’t use the
myFunctionvariable before it’s assigned. Your example code is similar to:To do what you want, either re-arrange the order:
Or declare
abcas just a proxy:If your function takes parameters, use
*argsand**kwargs: