Billing Software For Shops
Billing Software For Shops
while True:
sum= 0
for i in range(x):
sum+=x
GST= (18/100)*sum
if payment=="card":
discount= (5/100)*sum
elif payment=="netbanking":
discount= (10/100)*sum
elif payment=="cash":
discount= (7/100)*sum
if a== "y":
else:
print("---------------------------------------------------------------Invoice-------------------------------------------------
------------------")
if payment=="card":
elif payment=="netbanking":
elif payment=="cash":
print("GST is ₹:",GST)
str =input("Press Enter KEY to enter another entry and 0 key to exit ")
if str=="0":
break