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 ?
You can try the module
pycountry
, in the command line runpip install pycountry
, and then in your code:For more info see this