我只想从我的国家代码中获取Python Django应用程序中不同国家/地区的货币符号。例如,我有一个国家代码' US',我需要的输出是' $'或者' US $'。
现在我在两个库的帮助下实现了这个目标,即pycountry和forex-python。我能以更简单的方式实现这一目标吗?
import pycountry
from forex_python.converter import CurrencyCodes
code = "US"
country = pycountry.countries.get(alpha_2=code)
currency = pycountry.currencies.get(numeric=country.numeric)
country_codes = CurrencyCodes()
country_codes.get_symbol(currency.alpha_3)
输出:' US $'