31 Mar
2008
31 Mar
'08
7:43 a.m.
On Mon, Mar 31, 2008, Mathias Panzenb?ck wrote:
Maybe dictionary unpacking would be a nice thing?
d = {'foo': 42, 'egg': 23} {'foo': bar, 'egg': spam} = d print bar, spam 42 23
What do you think? Bad idea? Good idea?
Horrible idea. ;-) -- Aahz (aahz@pythoncraft.com) <*> http://www.pythoncraft.com/ "It is easier to optimize correct code than to correct optimized code." --Bill Harlan