测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A59767. 小陈编写了一段计算超市打折活动的Python程序,运行时报错,原因可能是下面哪项?( )def discount(price,rate)

单选题

题目描述

小陈编写了一段计算超市打折活动的Python程序,运行时报错,原因可能是下面哪项?( )

def discount(price,rate):
    final_price = price * rate
old_price = float ( input ('请输入原价:'))
rate = float (input ('请输入折扣率:'))
discount ( old_price , rate )
print ('打折后价格是:',final_price )

选项(单选)