LLD - Design — Online Shopping Cart
Consider this code snippet for applying a coupon discount:
What will be the output?
price = 100 coupon_discount = 15 # fixed amount final_price = price - coupon_discount print(final_price)
What will be the output?
