Tagged Questions

4
votes
7answers
3k views

convert string to dict using list comprehension in python

I have came across this problem a few times and can't seem to figure out a simple solution. Say I have a string string = "a=0 b=1 c=3" I want to convert that into a dictionary with a, b and c ...