How can one create new scopes in python - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T00:43:51Zhttp://stackoverflow.com/feeds/question/541926http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/541926/how-can-one-create-new-scopes-in-python2How can one create new scopes in pythonbgbg2009-02-12T15:53:59Z2009-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#5419483Answer by Douglas Leeder for How can one create new scopes in pythonDouglas Leeder2009-02-12T15:57:19Z2009-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#5419580Answer by SilentGhost for How can one create new scopes in pythonSilentGhost2009-02-12T15:57:57Z2009-02-12T16:07:06Z<p>variables in list comprehension (Python 3+) and generators are local:</p>
<pre><code>>>> i = 0
>>> [i+1 for i in range(10)]
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
>>> 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#5419841Answer by Jonas for How can one create new scopes in pythonJonas2009-02-12T16:01:19Z2009-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#5419960Answer by joeforker for How can one create new scopes in pythonjoeforker2009-02-12T16:03:19Z2009-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#5420414Answer by batbrat for How can one create new scopes in pythonbatbrat2009-02-12T16:10:01Z2009-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#5420481Answer by XenF for How can one create new scopes in pythonXenF2009-02-12T16:11:08Z2009-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#5421140Answer by J.F. Sebastian for How can one create new scopes in pythonJ.F. Sebastian2009-02-12T16:21:43Z2009-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#5421200Answer by David Locke for How can one create new scopes in pythonDavid Locke2009-02-12T16:23:30Z2009-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>