<div dir="ltr">A friend of mine wrote a library which does this:  <a href="https://pypi.python.org/pypi/ScopeFormatter">https://pypi.python.org/pypi/ScopeFormatter</a><div><br></div><div style>It's super handy when doing scripting/debugging.</div>
</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Fri, Mar 1, 2013 at 1:51 PM, Brett Cannon <span dir="ltr"><<a href="mailto:brett@python.org" target="_blank">brett@python.org</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote"><div class="im">On Fri, Mar 1, 2013 at 11:55 AM, 김용빈 <span dir="ltr"><<a href="mailto:kybinz@gmail.com" target="_blank">kybinz@gmail.com</a>></span> wrote:<br>


</div><div class="im"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">why we bother with '{variable}'.format(variable=variable) ?<div>can we just '{variable}.format()' ?</div>


</div></blockquote><div><br></div></div><div>variable = "Hello, World!"</div><div>print('{variable}'.format_map(locals()))</div><div class="im"><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


<div dir="ltr"><div><br></div><div>if variable is exist, then assign it.</div><div>
if variable is not exist, then raise error</div><div><br></div><div>I am not language expert. so sorry if this is not a good idea, or already discussed.</div></div>
</blockquote></div></div><br></div><div class="gmail_extra">As Dustin said, Explicit is Better Than Implicit; you don't want a variable to accidentally make your string formatting work by luck because you forgot to pass in an argument you meant to but just so happened to have a variable with the "right" name.</div>


</div>
<br>_______________________________________________<br>
Python-ideas mailing list<br>
<a href="mailto:Python-ideas@python.org">Python-ideas@python.org</a><br>
<a href="http://mail.python.org/mailman/listinfo/python-ideas" target="_blank">http://mail.python.org/mailman/listinfo/python-ideas</a><br>
<br></blockquote></div><br></div>