I have a txt file that I want to convert into a dictionary but I'm not sure how. All of the examples I can find each key only has one value but my dictionary has multiple values per key.
my txt file looks like this.
{'Morning' : ['Amox-Clav' , 'Cetirizine' , 'Acetaminophen'],'Afternoon' : ['Vitamin D' , 'Dextromethorphan'] ,'Night' : ['Amox-Clav' , 'Acetaminophen'],}
So I need to both open this txt file and convert the strings into a dictionary.