I'm writing such a function:
def func(name,a=None,b=None,c=None):
if (a is None) or (b is None) or (c is None):
for k,v in {'a':1,'b':2,'c':3}: # actually a dict return from another function
locals()[k] = v
print a
What I'm trying to do is to set values to some variables that inside the function and use those values latter on in that function.I'm trying to get my code work as suggested here.
It shows a is still None instead of 1. Same happened if I used globals(), locals() or setattr to this module. I'm using python 2.6.6 on Redhat Linux. Any suggestion on my code? Thanks
Edit: just a typo, I actually put the print inside the function
And for those whom I happened to entertain, you are so welcomed. But next time try to be more productive.
globalslike this should be done very carrefully... – Cédric Julien Jul 10 '12 at 16:03globals()[k] = vdafuq? – Jakob Bowyer Jul 10 '12 at 16:04alocal, not the global. – Martijn Pieters Jul 10 '12 at 16:07