📅  最后修改于: 2023-12-03 14:54:22.835000             🧑  作者: Mango
这是一个程序,用于计算在特定折扣下购物的实际价格。
程序的功能主要是接收购物金额与折扣率,并计算打折后的实际价格。
程序需要接收两个输入:
程序将返回以下结果:
以下是使用该程序的示例:
from calculate_price import calculate_price
price = calculate_price(100, 0.8)
print(price) # 输出80.00
程序采用Python语言实现,函数名为calculate_price
。具体实现如下:
def calculate_price(total_price, discount=1):
final_price = total_price * discount
return f"{final_price:.2f}"
其中,total_price
为购物总价,discount
为折扣率,采用了Python3.6版本及以上的格式化字符串来实现保留小数点后两位。
通过调用该程序,我们可以方便地计算打折后的实际价格,而且使用也非常简单。程序的核心代码也很简洁,易于理解和维护。