This is a Python program that calculates the discount amount and discounted rate for which you get the product for sale.
Variables Used:- price: Actual price of the product.
- discount_percentage: Datatype float : Discount % on the product.
- discount_amount: Datatype float : Discount Amount on the product.
- discounted_price: Datatype float : Discounted price that you pay.
Discount Amount = (Discount Percentage x Price)/100
Discounted Price = Price - Discount Amount
Sample Program code: discountCalculator.py
price = 1000;
discount_percentage = 5.99;
discount_amount = 0;
discounted_price = 0;
discount_amount = (discount_percentage*price)/100;
discounted_price = (price-discount_amount);
print("Discount Amount: ", discount_amount);
print("Discounted Price: ", discounted_price);
Output:
Discount Amount: 59.9
Discounted Price: 940.1
This is not an AI-generated article but is demonstrated by a human.
Please support independent contributors like Code2care by donating a coffee.
Buy me a coffee!

Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!