+ Returns: a new dict (loaded_merchant_categories) that maps keys to merchants. For example:
+
+ {Starbucks: Food, Citibnak ATM: Cash, ...}.'''
+
+ merchant_categories = {}
+ for line in merchant_category_loaded_csv:
+ t = []
+ t.append(line['Key'])
+ t.append(line['Value'])
+ key = t[0]
+ value = t[1]
+ merchant_categories[key]= value
+ t[:] = []
+ return merchant_categories
+
+
+###Transform the csv dict objects and write to CSV#####################################################################################################################