j
k
j a
j l
Maybe dictionary unpacking would be a nice thing?
......d = {'foo': 42, 'egg': 23} {'foo': bar, 'egg': spam} = d print bar, spam 42 23
...d = {'foo': 42, 'egg': 23} {'foo': bar, 'egg': spam} = d print bar, spam 42 23
d = {'foo': 42, 'egg': 23} {'foo': bar, 'egg': spam} = d print bar, spam 42 23
What do you think? Bad idea? Good idea? -panzi
Back to the thread
Back to the list