python program to find sale price of an item with given price and discount
Programming Example
write a program to find sale price of an item with given price and discount (%)
Solution
price=float(input("Enter Price : ")) dp=float(input("Enter discount % : ")) discount=price*dp/100 sp=price-discount print("Cost Price : ",price) print("Discount: ",discount) print("Selling Price : ",sp)
Output
Enter Price : 4500
Enter discount % : 12
Cost Price : 4500.0
Discount: 540.0
Selling Price : 3960.0