Python单位转换器货币转换
时间: 2024-09-29 08:13:51 浏览: 36
python货币转换器源码.zip
Python中可以创建一个简单的货币转换器,通常通过定义函数来实现,该函数接收输入的金额和原始货币对的目标货币的汇率,然后进行计算。下面是一个基本示例:
```python
def currency_converter(amount, from_currency, to_currency, exchange_rate):
"""
将指定货币金额转换成目标货币
参数:
amount (float): 需要转换的金额
from_currency (str): 原始货币类型
to_currency (str): 目标货币类型
exchange_rate (float): 从from_currency到to_currency的汇率
返回:
float: 转换后的金额
"""
return amount * exchange_rate if from_currency == "USD" else amount / exchange_rate
# 示例使用
usd_amount = 100
eur_rate = 0.91 # 美元对欧元的假设汇率
eur_amount = currency_converter(usd_amount, "USD", "EUR", eur_rate)
print(f"{usd_amount}美元等于{eur_amount:.2f}欧元")
阅读全文