[Solved] How do I loop this? [closed]
You almost certainly want to replace your specific variables for each nation with a data structure (such as a dictionary) that uses the nation’s name as a key. So, rather than referring to USA_REGION_DATA you’d look up REGION_DATA[“USA”]. This is extensible to any number of nations, as you can simply add new values to the … Read more