<div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">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>

<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 style>variable = "Hello, World!"</div><div style>print('{variable}'.format_map(locals()))</div><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><br></div><div class="gmail_extra" style>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>