用python编写一个简单程序,按照1美元=6人民币汇率编写一个美元和人民币的双向兑换程序
时间: 2024-09-10 17:05:59 浏览: 161
教你如何编写、保存与运行Python程序的方法
以下是一个简单的Python程序,它能够根据给定的汇率(1美元=6人民币)实现美元和人民币之间的双向兑换:
```python
# 定义汇率
exchange_rate = 6
# 美元兑换人民币函数
def usd_to_cny(usd):
return usd * exchange_rate
# 人民币兑换美元函数
def cny_to_usd(cny):
return cny / exchange_rate
# 用户输入金额和货币类型进行兑换
amount = float(input("请输入金额:"))
currency = input("请输入货币类型(USD/CNY):").upper()
if currency == "USD":
converted_amount = usd_to_cny(amount)
print(f"{amount}美元等于{converted_amount}人民币。")
elif currency == "CNY":
converted_amount = cny_to_usd(amount)
print(f"{amount}人民币等于{converted_amount}美元。")
else:
print("货币类型输入错误,请输入USD或CNY。")
```
运行这个程序后,它会提示用户输入金额和想要兑换的货币类型(美元USD或人民币CNY)。根据用户的选择,程序会根据设定的汇率计算并输出兑换后的金额。
阅读全文