Python Используйте имя переменной в качестве переменной

>>> foo = "bar"
>>> exec(foo + " = 'something else'")
>>> print bar
something else
>>> 
Important Ibex