Python练习题3:货币转换 I
时间:2023-08-21 18:35:58
你可以使用 `forex-python` 模块来进行货币转换。首先,你需要在命令行中安装该模块,可以使用以下命令:
```
pip install forex-python
```
然后,你可以使用以下代码来进行货币转换:
```python
from forex_python.converter import CurrencyRates
c=CurrencyRates()
amount=100
from_currency='USD'
to_currency='EUR'
converted_amount=c.convert(from_currency, to_currency, amount)
print(f'{from_currency} {amount} is equal to {to_currency} {converted_amount}')
```
在这个例子中,我们将100美元转换为欧元。输出将是:
```
USD 100 is equal to EUR 88.38
```
你可以根据需要更改要转换的金额和货币代码。