LLD - Design — Online Shopping Cart
Identify the issue in this Python code snippet for applying a discount:
price = 120 discount = 15 final_price = price - (price * discount) print(final_price)
