A small question about python's variable scope - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T06:51:09Z http://stackoverflow.com/feeds/question/357810 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/357810/a-small-question-about-pythons-variable-scope 1 A small question about python's variable scope NONEenglisher 2008-12-10T22:20:07Z 2008-12-11T02:03:08Z <p>I am a beginner of python and have a question, very confusing for me. If I define a function first but within the function I have to use a variable which is defined in another function below, can I do it like this? Or how can I import the return things of another function into a function? for example:</p> <pre><code>def hello(x,y): good=hi(iy,ix) "then do somethings,and use the parameter'good'." return something def hi(iy,ix): "code" return good </code></pre> http://stackoverflow.com/questions/357810/a-small-question-about-pythons-variable-scope/357853#357853 2 Answer by Jimmy for A small question about python's variable scope Jimmy 2008-12-10T22:35:55Z 2008-12-10T22:35:55Z <p>your example program works, because the two instances of 'good' are different variables (you just happen to have both variables with the same name). The following code is exactly the same:</p> <pre><code>def hello(x,y): good=hi(iy,ix) "then do somethings,and use the parameter'good'." return something def hi(iy,ix): "code" return great </code></pre> http://stackoverflow.com/questions/357810/a-small-question-about-pythons-variable-scope/357855#357855 5 Answer by S.Lott for A small question about python's variable scope S.Lott 2008-12-10T22:36:30Z 2008-12-11T02:02:37Z <p>The scope of functions <code>hello</code> and <code>hi</code> are entirely different. They do not have any variables in common.</p> <p>Note that the result of calling <code>hi(x,y)</code> is some object. You save that object with the name <code>good</code> in the function <code>hello</code>.</p> <p>The variable named <code>good</code> in <code>hello</code> is a different variable, unrelated to the variable named <code>good</code> in the function <code>hi</code>.</p> <p>They're spelled the same, but the exist in different namespaces. To prove this, change the spelling the <code>good</code> variable in one of the two functions, you'll see that things still work.</p> <p><hr /></p> <p>Edit. Follow-up: "so what should i do if i want use the result of <code>hi</code> function in <code>hello</code> function?"</p> <p>Nothing unusual. Look at <code>hello</code> closely.</p> <pre><code>def hello(x,y): fordf150 = hi(y,x) "then do somethings,and use the variable 'fordf150'." return something def hi( ix, iy ): "compute some value, good." return good </code></pre> <p>Some script evaluates <code>hello( 2, 3)</code>.</p> <ol> <li><p>Python creates a new namespace for the evaluation of <code>hello</code>.</p></li> <li><p>In <code>hello</code>, <code>x</code> is bound to the object <code>2</code>. Binding is done position order.</p></li> <li><p>In <code>hello</code>, <code>y</code> is bound to the object <code>3</code>.</p></li> <li><p>In <code>hello</code>, Python evaluates the first statement, <code>fordf150 = hi( y, x )</code>, <code>y</code> is 3, <code>x</code> is 2.</p> <p>a. Python creates a new namespace for the evaluation of <code>hi</code>.</p> <p>b. In <code>hi</code>, <code>ix</code> is bound to the object <code>3</code>. Binding is done position order.</p> <p>c. In <code>hi</code>, <code>iy</code> is bound to the object <code>2</code>.</p> <p>d. In <code>hi</code>, something happens and <code>good</code> is bound to some object, say <code>3.1415926</code>.</p> <p>e. In <code>hi</code>, a <code>return</code> is executed; identifying an object as the value for <code>hi</code>. In this case, the object is named by <code>good</code> and is the object <code>3.1415926</code>.</p> <p>f. The <code>hi</code> namespace is discarded. <code>good</code>, <code>ix</code> and <code>iy</code> vanish. The object (<code>3.1415926</code>), however, remains as the value of evaluating <code>hi</code>.</p></li> <li><p>In <code>hello</code>, Python finishes the first statement, <code>fordf150 = hi( y, x )</code>, <code>y</code> is 3, <code>x</code> is 2. The value of <code>hi</code> is <code>3.1415926</code>.</p> <p>a. <code>fordf150</code> is bound to the object created by evaluating <code>hi</code>, <code>3.1415926</code>.</p></li> <li><p>In <code>hello</code>, Python moves on to other statements.</p></li> <li><p>At some point <code>something</code> is bound to an object, say, <code>2.718281828459045</code>.</p></li> <li><p>In <code>hello</code>, a <code>return</code> is executed; identifying an object as the value for <code>hello</code>. In this case, the object is named by <code>something</code> and is the object <code>2.718281828459045 </code>.</p></li> <li><p>The namespace is discarded. <code>fordf150</code> and <code>something</code> vanish, as do <code>x</code> and <code>y</code>. The object (<code>2.718281828459045 </code>), however, remains as the value of evaluating <code>hello</code>.</p></li> </ol> <p>Whatever program or script called <code>hello</code> gets the answer.</p> http://stackoverflow.com/questions/357810/a-small-question-about-pythons-variable-scope/357858#357858 1 Answer by nakedfanatic for A small question about python's variable scope nakedfanatic 2008-12-10T22:37:05Z 2008-12-10T22:37:05Z <p>The "hello" function doesn't mind you calling the "hi" function which is hasn't been defined yet, provided you don't try to actually use the "hello" function until after the both functions have been defined.</p> http://stackoverflow.com/questions/357810/a-small-question-about-pythons-variable-scope/358013#358013 3 Answer by Sir Oddfellow for A small question about python's variable scope Sir Oddfellow 2008-12-10T23:35:45Z 2008-12-10T23:35:45Z <p>If you want to define a variable to the global namespace from inside a function, and thereby make it accessible by other functions in this space, you can use the global keyword. Here's some examples</p> <pre><code>varA = 5 #A normal declaration of an integer in the main "global" namespace def funcA(): print varA #This works, because the variable was defined in the global namespace #and functions have read access to this. def changeA(): varA = 2 #This however, defines a variable in the function's own namespace #Because of this, it's not accessible by other functions. #It has also replaced the global variable, though only inside this function def newVar(): global varB #By using the global keyword, you assign this variable to the global namespace varB = 5 def funcB(): print varB #Making it accessible to other functions </code></pre> <p>Conclusion: variables defined in a function stays in the function's namespace. It still has access to the global namespace for reading only, unless the variable has been called with the global keyword.</p> <p>The term global isn't entirely global as it may seem at first. It's practically only a link to the lowest namespace in the file you're working in. Global keywords cannot be accessed in another module.</p> <p>As a mild warning, this may be considered to be less "good practice" by some.</p> http://stackoverflow.com/questions/357810/a-small-question-about-pythons-variable-scope/358041#358041 2 Answer by RizwanK for A small question about python's variable scope RizwanK 2008-12-10T23:54:34Z 2008-12-10T23:54:34Z <p>More details on the python scoping rules are here :</p> <p><a href="http://stackoverflow.com/questions/291978/short-description-of-python-scoping-rules#292502">Short Description of Python Scoping Rules</a></p>