Python nested loops inside dict
Python nested loops inside dict Problem Description: I have a dict exchange rates. It has 3 levels: rates, date and currency. "rates": { "2022-11-30": { "AED": 0.06019, "AFN": 1.442036, "ALL": 1.836137, "AMD": 6.464451, "ANG": 0.029525, "AOA": 8.304432, "ARS": 2.741601, ……………. etc. I want to write a loop that first will capture the date in a … Read more