汇率换算python
时间: 2023-11-09 21:03:34 浏览: 93
Python实现汇率转换操作
5星 · 资源好评率100%
可以使用 Python 中的第三方库 `forex-python` 来进行汇率换算。首先需要安装该库,可以使用以下命令进行安装:
```
pip install forex-python
```
然后可以使用以下代码进行汇率换算:
```python
from forex_python.converter import CurrencyRates
c = CurrencyRates()
amount = 100
from_currency = 'USD'
to_currency = 'EUR'
result = c.convert(from_currency, to_currency, amount)
print(f'{amount} {from_currency} = {result} {to_currency}')
```
以上代码将把 100 美元换算成欧元,并输出结果。
阅读全文