I want the user to input a ISO-3166-1 alpha-2 code.
country_code = input("Please enter a country's two-letter code (e.g. FR, US) :")
I then want to translate the code into the country's name:
FR -> France
US -> United States of America
https://laendercode.net/en/2-letter-list.html
How can I do this ?