I have a dictionary with two keys and a list with each key and was wondering how I could save the lists, with each key representing a column of the values within the list? The values are all Decimal('x') by the way.
An example of my dictionary is
mydict = {'Prices':[Decimal('1'),Decimal('2')], 'Quantities':[Decimal('4.3'), Decimal('2.2')]}
Overall goal is to save the dictionary and read in again to be back to how it was in another program