Python program to calculate discount

28984


Following program shows you how to calculate discount.
In this program we get bill amount and discount from user and shows after discount amount using following formula
Discount = bill - (bill * discount / 100)

bill = int(input("Enter bill amount:"))
discount = int(input("Enter discount percentage:"))
output = bill - (bill * discount / 100)
print("After discount your bill is: ", output)

Output:

Enter bill amount: 2500
Enter discount percentage: 15
After discount your bill is:  2125.0