LLD - Design — Online Shopping Cart
In the following code, what is the error that prevents correct discount application?
price = 200 discount = 20 # intended as 20% final_price = price - discount print(final_price)
