python不使用封装函数手动输入汇率
时间: 2024-09-28 13:14:31 浏览: 30
Python如何使用input函数获取输入
Python中如果不需要使用封装函数直接输入汇率,你可以创建一个简单的用户交互界面让用户手动输入两个货币兑换的汇率。下面是一个基本的例子:
```python
# 创建一个字典来存储汇率,这里假设美元对人民币的汇率
exchange_rates = {
'USD': 6.45, # 美元兑人民币汇率
'EUR': 7.93, # 欧元兑人民币汇率
# 添加更多货币的汇率...
}
def get_exchange_rate():
currency_from = input("请输入你要转换的货币从(如 USD, EUR):")
currency_to = input("请输入你要转换成的货币到(同样举例 USD, EUR):")
if currency_from in exchange_rates and currency_to in exchange_rates:
rate = exchange_rates[currency_from] / exchange_rates[currency_to]
return rate
else:
print("抱歉,暂无该货币间的汇率信息。")
# 调用函数获取汇率
try:
rate = get_exchange_rate()
print(f"{currency_from} 对 {currency_to} 的汇率是: {rate}")
except Exception as e:
print(f"错误:{str(e)}")
#
阅读全文