python汇率转换

要求需要实现的功能

python汇率转换_第1张图片

汇率转换3.0:

USD_VS_CNY=6.32
currency_str=input('请输入带货币的单位(美元:USD,人民币:RMB)的金额,或者输入X退出')
while currency_str!='X':

    uint =currency_str[-3:]
    if uint =='USD':
        usd_value_str = currency_str[:-3]
        usd_value =eval(usd_value_str)
        cny = usd_value* USD_VS_CNY
        print('人民币的金额为',cny)
    elif uint =='RMB':
        cny_value_str = currency_str[:-3]
        cny_value =eval(cny_value_str)
        usd =cny_value/USD_VS_CNY
        print(&#

你可能感兴趣的:(python)