Computer Science, asked by karadisairam, 10 months ago

python program to find total price of article after 23% discount on MRP RS.186 when purchasing 5 units

Answers

Answered by ashwin456ojha
0

Answer:

price_article = 186

price_article_5 = 186  * 5

discount_percent = 23

total_price = (price_article_5 * discount_percent) / 100

overall_price = price_article_5 - total_price

print ("The total price is ", str(overall_price))

#Code is easy to understand...

Similar questions