Python函数
Posted 逐梦武威
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python函数相关的知识,希望对你有一定的参考价值。
Python中用函数计算汇率; def convert_currency(im,er): out=im*er return out USD_VS_RMB=6.77 #带单位的货币输入 currency_str_value=input(‘请输入带单位的货币金额:‘) unit=currency_str_value[-3:] if unit==‘CNY‘: exchange_rate=1/USD_VS_RMB elif unit==‘USD‘: exchange_rate=USD_VS_RMB else: exchange_rate=-1 if exchange_rate!=-1: in_money=currency_str_value[:-3] #调用函数 out_money=convert_currency(in_money,exchange_rate) print(‘转换后的金额:‘,out_money) else: print(‘不支持该种货币!‘)
以上是关于Python函数的主要内容,如果未能解决你的问题,请参考以下文章