Skip to content

It will calculate the quantity with per unit price including GST 18%

License

Notifications You must be signed in to change notification settings

keshav549/Bill-Calculator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Bill-Calculator

def calSI(): #input product name as p p=(input("Enter Product name : ")) #input quantity as q q = int(input("Enter quantity : ")) #input price per unit as r r = int(input("Enter price per unit : Rs.")) #calculate basic Bill as b = qr b = qr #calculate Total Bill as T = 18/100*b + b T = 18/100 * b+b #print Product name print("Product name : ",p) #print quantity print ("quantity : ",q) #print price per unit print("price per unit : Rs.",r) #print Basic Bill print("Basic Bill :Rs.",b) #print Total Bill print ("Total Bill :Rs.",T)

calSI()

About

It will calculate the quantity with per unit price including GST 18%

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors