码迷,mamicode.com
首页 > 编程语言 > 详细

Python函数

时间:2018-10-19 19:48:50      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:str   class   ==   enc   convert   pytho   python函数   else   NPU   

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函数

标签:str   class   ==   enc   convert   pytho   python函数   else   NPU   

原文地址:https://www.cnblogs.com/llhhcc/p/9818343.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!