How can one create new scopes in python - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T00:43:51Z http://stackoverflow.com/feeds/question/541926 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/541926/how-can-one-create-new-scopes-in-python 2 How can one create new scopes in python bgbg 2009-02-12T15:53:59Z 2009-02-12T16:23:30Z <p>In many languages (and places) there is a nice practice of creating local scopes by creating a block like <a href="http://stackoverflow.com/questions/541705/is-iftrue-a-good-idea-in-c">this</a>.</p> <pre><code>void foo() { ... Do some stuff ... if(TRUE) { char a; int b; ... Do some more stuff ... } ... Do even more stuff ... } </code></pre> <p>How can I implement this in python without getting the unexpected indent error and without using some sort of <a href="http://stackoverflow.com/questions/541705/is-iftrue-a-good-idea-in-c"><em>if True:</em></a> tricks</p> http://stackoverflow.com/questions/541926/how-can-one-create-new-scopes-in-python/541948#541948 3 Answer by Douglas Leeder for How can one create new scopes in python Douglas Leeder 2009-02-12T15:57:19Z 2009-02-12T15:57:19Z <p>Why do you want to create new scopes in python anyway?</p> <p>The normal reason for doing it in other languages is variable scoping, but that doesn't happen in python.</p> <pre><code>if True: a = 10 print a </code></pre> http://stackoverflow.com/questions/541926/how-can-one-create-new-scopes-in-python/541958#541958 0 Answer by SilentGhost for How can one create new scopes in python SilentGhost 2009-02-12T15:57:57Z 2009-02-12T16:07:06Z <p>variables in list comprehension (Python 3+) and generators are local:</p> <pre><code>&gt;&gt;&gt; i = 0 &gt;&gt;&gt; [i+1 for i in range(10)] [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] &gt;&gt;&gt; i 0 </code></pre> <p>but why exactly do you need this?</p> http://stackoverflow.com/questions/541926/how-can-one-create-new-scopes-in-python/541984#541984 1 Answer by Jonas for How can one create new scopes in python Jonas 2009-02-12T16:01:19Z 2009-02-12T16:01:19Z <p>I would see this as a clear sign that it's time to create a new function and refactor the code. I can see no reason to create a new scope like that. Any reason in mind?</p> http://stackoverflow.com/questions/541926/how-can-one-create-new-scopes-in-python/541996#541996 0 Answer by joeforker for How can one create new scopes in python joeforker 2009-02-12T16:03:19Z 2009-02-12T16:03:19Z <pre><code>def a(): def b(): pass b() </code></pre> <p>If I just want some extra indentation or am debugging, I'll use <code>if True:</code></p> http://stackoverflow.com/questions/541926/how-can-one-create-new-scopes-in-python/542041#542041 4 Answer by batbrat for How can one create new scopes in python batbrat 2009-02-12T16:10:01Z 2009-02-12T16:10:01Z <p>In Python, scoping is of three types : global, local and class. You can create specialized 'scope' dictionaries to pass to exec / eval(). In addition you can use nested scopes (defining a function within another). I found these to be sufficient in all my code.</p> <p>As Douglas Leeder said already, the main reason to use it in other languages is variable scoping and that doesn't really happen in Python. In addition, Python is the most readable language I have ever used. It would go against the grain of readability to do something like if true tricks (Which you say you want to avoid). In that case, I think the best bet is to refactor your code into multiple functions, or use a single scope. I think that the available scopes in Python are sufficient to cover every eventuality, so local scoping shouldn't really be necessary.</p> <p>I hope this helps.</p> http://stackoverflow.com/questions/541926/how-can-one-create-new-scopes-in-python/542048#542048 1 Answer by XenF for How can one create new scopes in python XenF 2009-02-12T16:11:08Z 2009-02-12T16:11:08Z <p>If you just want to create temp variables and let them be garbage collected right after using them, you can use</p> <pre><code>del varname </code></pre> <p>when you don't want them anymore. </p> <p>If its just for aesthetics, you could use comments or extra newlines, no extra indentation, though.</p> http://stackoverflow.com/questions/541926/how-can-one-create-new-scopes-in-python/542114#542114 0 Answer by J.F. Sebastian for How can one create new scopes in python J.F. Sebastian 2009-02-12T16:21:43Z 2009-02-12T16:21:43Z <blockquote> <p>A <em>scope</em> is a textual region of a Python program where a namespace is directly accessible. “Directly accessible” here means that an unqualified reference to a name attempts to find the name in the namespace...</p> </blockquote> <p>Please, read <a href="http://docs.python.org/tutorial/classes.html#python-scopes-and-name-spaces" rel="nofollow">the documentation</a> and clarify your question.</p> <p>btw, you don't need <code>if(TRUE){}</code> in C, a simple <code>{}</code> is sufficient. </p> http://stackoverflow.com/questions/541926/how-can-one-create-new-scopes-in-python/542120#542120 0 Answer by David Locke for How can one create new scopes in python David Locke 2009-02-12T16:23:30Z 2009-02-12T16:23:30Z <p>Python has exactly two scopes, local and global. Variables that are used in a function are in local scope no matter what indentation level they were created at. Calling a nested function will have the effect that you're looking for.</p> <pre><code>def foo(): a = 1 def bar(): b = 2 print a, b #will print "1 2" bar() </code></pre> <p>Still like everyone else, I have to ask you why you want to create a limited scope inside a function.</p>