Calculate discount amount python code

This is a Python program that calculates the discount amount and discounted rate for which you get the product for sale.

Variables Used:
  1. price: Actual price of the product.
  2. discount_percentage: Datatype float : Discount % on the product.
  3. discount_amount: Datatype float : Discount Amount on the product.
  4. discounted_price: Datatype float : Discounted price that you pay.
Formula:
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!

Buy Code2care a Coffee!

Comments & Discussion

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