I am looking up a set of email addresses grouped together in a dictionary using the get() function
the get function returns
['[“one.yahoo.com”,”two.yahoo.com”,"three.yahoo.com"]']
I have tried several methods to remove the single quotes so that I end up with a list like this
email = [ [“one.yahoo.com”,”two.yahoo.com”,"three.yahoo.com"] ]
the dictionary looks like this
dict= { 'Warehouse':'[“x@yahoo.com”,”y@yahoo.com”,”z@yahoo.com”]', 'Bottling':'[“one.yahoo.com”,”two.yahoo.com”,"three.yahoo.com"]'}