如何从Django应用程序中的ISO国家代码中获取货币符号?

时间:2018-01-21 11:54:07

标签: python django python-3.x

我只想从我的国家代码中获取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 $'

0 个答案:

没有答案