I've got a dictionary of unique id's (strings), and values for each of these id's (also strings). The problem is that some of the keys have multiple values separated by commas. I can't think of how to use string manipulation to split them based on commas and still have them assigned to their key.
for example...
'abcde': 'abc,def'
and I would like it to be:
'abcde': 'abc'
'abcde': 'def'
any insight would be greatly appreciated