下面是一个简单的Python程序,可以实现汇率转换功能:
def convert_currency(amount, exchange_rate):
return amount * exchange_rate
def main():
print("欢迎使用汇率转换器!")
amount = float(input("请输入要转换的金额:"))
exchange_rate = float(input("请输入当前汇率:"))
converted_amount = convert_currency(amount, exchange_rate)
print(f"转换后的金额为:{converted_amount}")
if __name__ == "__main__":
main()
用户可以输入要转换的金额和当前汇率,程序将计算出转换后的金额并输出。可以根据需要添加更多功能,比如支持不同的货币之间的转换、实时获取汇率等。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: python如何打印对象的属性