BILL RECEIPT CREATOR PYTHON PROJECT (PYTHON)
Hi Guys! Welcome To INFO HUB Today, I want to share my python project. The name of my project is "Bill Receipt Creator". ⦁ Work of project. 1. My project creates the bill receipt. Code of this project is :- #Bill_receipt_creator # Taking Data Of Customer print("Customer name : ",end="") name = input() print("Mobile No. : ",end="") mobile = int(input()) print("Address : ",end="") address = input() print("Product : ",end="") product = input() print("The price of 1 piece : ",end=" ") price = int(input()) print("Quantity : ",end="") quantity = int(input()) if quantity>1 : price2 = int(price*quantity) print("Do you want to give discount : ", end=" ") Yes = "Yes" No = "No" dis = input() if dis in Yes: print("Discount (%): ", end=" ") discountinp = int(input()) discount = (discountin...