我正在尝试将国家名称转换为所需的国家代码。
例如:

United Kingdom : UK

我尝试了以下操作:
import pycountry
user_input = raw_input(': ')
mapping = {country.name: country.alpha2 for country in pycountry.countries}
print mapping.get(user_input)

我相信我可能误解了文档,因为我收到了以下错误:
    mapping = {country.name: country.alpha2 for country in pycountry.countries}
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pycountry/db.py", line 22, in __getattr__
    raise AttributeError
AttributeError

最佳答案

import pycountry
user_input = raw_input(': ')
mapping = {country.name: country.alpha_2 for country in pycountry.countries}
print mapping.get(user_input)

使用“alpha2”而不是alpha2的正确方式

关于python - 从用户输入中使用pycountry获取国家/地区代码,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40628490/

10-11 18:58