I would like to assign countries a currency value, but some currencies are used in multiple countries. I know I can just assign them individually for every country but is there a better way of doing it? Something I tried was:
rates = { ('England', 'wales'): 'GBP' }
where the expected result was:
rates['England'] = GBP
rates['wales'] = GBP
This doesn't work though. What can I do?