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 = (discountinp/100*price2)

    print("rupees that minus to the total amount : ",discount)


print("GST : ", end="")

gst = int(input())


print("Total amount : ",gst+price2-discount)


print("Thank You!",name)

print("Visit Again")

______________________________________________

In this video, you can also watch the work of this project



Do you like this project?
Don't forget to comment.

Comments

Post a Comment

Popular Posts