Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How do I do variable variables in Python?

I have a variable with a string assigned to it and I want to define a new variable based on that string.

foo = "bar"
foo = "something else"   

# What I actually want is:

bar = "something else"
share|improve this question
7  
You probably DON'T want that. Why are you trying to do it? – JBernardo Jul 19 '12 at 4:03
1  
No you don't. The reason you have to use exec is because locals() doesn't support modifications. locals() doesn't support modifications because it would make the implementation more complex and slower and is never a good idea – gnibbler Jul 19 '12 at 4:04
1  
Similar Post: stackoverflow.com/questions/1373164/… – Kartik Jul 19 '12 at 4:08

marked as duplicate by jogojapan, JBernardo, Karl Knechtel, monkut, Jeremy Banks Jul 19 '12 at 19:09

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

You will be much happier using a dictionary instead:

my_data = {}
foo = "hello"
my_data[foo] = "goodbye"
assert my_data["hello"] == "goodbye"
share|improve this answer
+1 For solving the problem with a dict. What could be more pythonic? – gnibbler Jul 19 '12 at 4:07

You can use setattr

name= 'varname'
value= 'something'

setattr(self, name, value) #equivalent to: self.varname= 'something'

print self.varname
#will print 'something'

But, since you should inform an object to receive the new variable, I think this only works inside classes.

share|improve this answer

You can use exec for that:

>>> foo = "bar"
>>> exec(foo + " = 'something else'")
>>> print bar
something else
>>> 
share|improve this answer
3  
-1: This is a bad idea. Use a dictionary instead, it's what they were meant for. – Ned Batchelder Jul 19 '12 at 4:05

Not the answer you're looking for? Browse other questions tagged or ask your own question.