python--实现汇率转换
发布时间:2023-09-17 23:59:10 作者:佚名
以下是一个示例代码,演示如何使用 `forex-python` 模块进行
汇率和货币
转换:
```python
from forex_python.converter import CurrencyRates, CurrencyCodes
c=CurrencyRates()
cc=CurrencyCodes()
amount=100
from_currency='USD'
to_currency='EUR'
converted_amount=c.convert(from_currency, to_currency, amount)
symbol=cc.get_symbol(to_currency)
print(f'{from_currency} {amount} is equal to {symbol}{converted_amount:.2f}')
```
在这个例子中,我们将100美元
转换为欧元,并在输出中包含欧元符号。输出将是:
```
USD 100 is equal to €88.38
```
你可以根据需要更改要
转换的金额和货币代码,以及输出的格式。`forex-python` 模块还提供了其他一些有用的功能,例如
汇率表和货币符号查询。