I have a string in the form of:
s = 'A - 13, B - 14, C - 29, M - 99'
and so on (the length varies). What is the easiest way to create a dictionary from this?
A: 13, B: 14, C: 29 ...
I know I can split but I can’t get the right syntax on how to do it. If I split on -, then how do I join the two parts?
Iterating over this seems to much of a pain.
EDIT: The next solution is for when you want the values as integers, which I think is what you want.