show/hide this revision's text 3 edited tags
show/hide this revision's text 2 Tidying

A small question about pythonpython's variable scope

i

I am a beginer beginner of python and got have a question,very confuse question, very confusing for me. if i If I define a function first but within the function i I have to use a variable which is defined in another function below,can i below, can I do it like this? or Or how can i I import the return things of another function into a function?for function? for example:

def hello(x,y):
    good=hi(iy,ix)
    '''then "then do somethings,and use the parameter'good'.return somethings'''
parameter'good'."
    return something

def hi(iy,ix):
    ''code''return "code"
    return good
show/hide this revision's text 1

A small question about python

i am a beginer of python and got a question,very confuse me. if i define a function first but within the function i have to use a variable which is defined another function below,can i do like this? or how can i import the return things of another function into a function?for example: def hello(x,y): good=hi(iy,ix) '''then do somethings,and use the parameter'good'.return somethings''' def hi(iy,ix): ''code''return good