Advertisements
Advertisements
Question
XYZ store plans to give a festival discount to its customers. The store management has decided to give discount on the following criteria:
Shopping Amount | Discount Offered |
>=500 and <1000 | 5% |
>=1000 and <2000 | 8% |
>=2000 | 10% |
An additional discount of 5% is given to customers who are members of the store. Create a program using a user-defined function that accepts the shopping amount as a parameter and calculates the discount and net amount payable on the basis of the following conditions:
Net Payable Amount = Total Shopping Amount – Discount.
Answer in Brief
Solution
In this program, the shopping amount needs to be compared multiple times, hence ‘elif’ function will be used after the first ‘if’. If the comparison is started from the highest amount, each subsequent comparison will eliminate the need to compare the maximum value.
Program:
# function definition,
def discount(amount, member):
disc = 0
if amount >= 2000:
disc = round((10 + member) * amount/100, 2)
elif amount>= 1000:
disc = round((8 + member) * amount/100, 2)
elif amount >= 500:
disc = round((5 + member) * amount/100, 2)
payable = amount - disc
print("Discount Amount: ",disc)
print("Net Payable Amount: ", payable)
amount = float(input("Enter the shopping amount: "))
member = input("Is the Customer a member?(Y/N) ")
if(member == "y" or member == "Y"):
#Calling the function with member value 5
discount(amount,5)
else:
#if the customer is not a member, the value of member is passed as 0
discount(amount, 0)
OUTPUT:
Enter the shopping amount: 2500
Is the Customer a member?(Y/N) Y
Discount Amount: 375.0
Net Payable Amount: 2125.0
Enter the shopping amount: 2500
Is the Customer a member?(Y/N) N
Discount Amount: 250.0
Net Payable Amount: 2250.0
shaalaa.com
Flow of Execution
Is there an error in this question or solution?