sh_08_买苹果改进
sh_08_买苹果改进
1 # 1. 提示用户输入苹果的单价 2 price = float(input("苹果的单价:")) 3 4 # 2. 提示用户输入苹果的重量 5 weight = float(input("苹果的重量:")) 6 7 # 3. 计算金额 8 money = price * weight 9 10 print(money)
sh_08_买苹果改进
1 # 1. 提示用户输入苹果的单价 2 price = float(input("苹果的单价:")) 3 4 # 2. 提示用户输入苹果的重量 5 weight = float(input("苹果的重量:")) 6 7 # 3. 计算金额 8 money = price * weight 9 10 print(money)