i'm using Python 2.5 and Win XP. i have a tuple as below:
>>> a
(None, '{1: 2, 2: 4, 3: 6, 4: 8, 5: 10, 6: 12}')
>>> a[1]
'{1: 2, 2: 4, 3: 6, 4: 8, 5: 10, 6: 12}'
>>>
i want to convert tuple a[1] to dictionary because i want to use the key and value. pls help to advise. tq
ais a tuple,a[1]is already a dictionary. For instanche, a[1][4] would give you8. – UncleZeiv Apr 12 '11 at 9:33