Is something like the following possible in Python:
>>> vars = {\'a\': 5} >>> makevars(vars) >>> print a 5
So, m
I think this works:
locals().update(vars)