Programming Examples
Python program to find sale price of an item with given price and discount
write a program to find sale price of an item with given price and discount (%)
Solutionprice=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)
OutputEnter Price : 4500
Enter discount % : 12
Cost Price : 4500.0
Discount: 540.0
Selling Price : 3960.0
