python汇率加货币转换
时间: 2023-07-02 15:21:46 浏览: 145
Python实现汇率转换操作
5星 · 资源好评率100%
以下是一个示例代码,演示如何使用 `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` 模块还提供了其他一些有用的功能,例如汇率表和货币符号查询。
阅读全文