I have some issues with the eval function. I have a list like, for example,

list1 = [('a',1), ('b',2), ('c',3)]

and I would like to assign each value of a tuple to the first element:

for el in list1 :
    eval(el[0]) = el[1]

How can I do this?

link|improve this question

38% accept rate
feedback

2 Answers

You could do this:

exec('%s = %s' % el)

But don't. Really, don't. You don't need dynamic local variables, you need a dictionary:

my_dict = dict(list1)
link|improve this answer
1  
eval works only on expressions. That would need exec. Still, he shouldn't do that :P – Ricardo Cárdenes Jan 11 at 11:39
@RicardoCárdenes you're right, thanks - corrected. – Daniel Roseman Jan 11 at 11:48
using dictionaries is best. That way you have the keys and the values together in a single variable and also you can access them separately using keys() and values() if you need to. – Arnab Ghosal Jan 11 at 12:50
Ok thanks ! I'll try to work only with dictionaries now ! – NicoCati Jan 11 at 15:47
feedback

You don't need eval for that.

You can access local environment directly by calling the vars builtin. Here's an example interactive session:

>>> list1 = [("a", 4), ("b", 8)]
>>> vars().update(dict(list1))
>>> a
4
>>> b
8

Here vars() returns the dict with local variable bindings. Since it returns a pointer to the only instance (not a copy), you can modify it in place (.update).

link|improve this answer
While this is true, and does answer his question, you really shouldn't do that. Must better to just create a new dictionary for them. – Shawabawa Jan 11 at 13:48
feedback

Your Answer

 
or
required, but never shown

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