|
3 |
edited tags
|
||
|
2 | Tidying | ||
A small question about pythonpython's variable scopei 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:
|
||||
|
1 |
|
||
A small question about pythoni 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
|
||||
