Python
1. Create a program to calculate 5% discount on total purchase of stationery.
Answers
Answered by
0
Answer:
bill = int(input("2500:"))
bill = 2500
discount = int(input("5%:"))
discount = 5%
print(bill*discount/100)
2125.0
Similar questions