Computer Science, asked by jitalpanchal74826, 1 day ago

Python


1. Create a program to calculate 5% discount on total purchase of stationery.​

Answers

Answered by ekam1812
0

Answer:

bill = int(input("2500:"))

bill = 2500

discount = int(input("5%:"))

discount = 5%

print(bill*discount/100)

2125.0

Similar questions