完成练习 1.计算器 卖橘子的计算器:写一段代码,提示用户输入橘子的价格,然后随机生成购买的斤数(5到10斤之间),最后计算出应该支付的金额! import random def calculator(price): weight=round(random.uniform(5,10),2) money=round(price*weight,2) return money,weight def cal(): try: price=round(float(input("橘子的价格是多少钱一斤:")