0% found this document useful (0 votes)
15 views23 pages

ACKNOWLEDGEMENT

The document includes an acknowledgment section thanking God, teachers, parents, and the internet for support in completing an Investigatory Project on Billing Software. It certifies that Brahmesh, a student, has successfully completed the project under the guidance of Mr. Bhagat Singh Rajawat. The document also contains an index outlining various sections of the project, including tests and procedures, along with source code for the billing software.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views23 pages

ACKNOWLEDGEMENT

The document includes an acknowledgment section thanking God, teachers, parents, and the internet for support in completing an Investigatory Project on Billing Software. It certifies that Brahmesh, a student, has successfully completed the project under the guidance of Mr. Bhagat Singh Rajawat. The document also contains an index outlining various sections of the project, including tests and procedures, along with source code for the billing software.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 23

ACKNOWLEDGEME

NT
In the accomplishment
of this project
successfully many
people
who best have owed
upon me their
blessings and the heart
pledged support,
this time I am utilizing
this to thank all the
people who have been
concerned with this
project.
Firstly I thank God for
making me able
to yield within the span
of completing this
project. Then I would
like to thank my
Principal
Computer Science
Investigatory
Project
2023-24
with their valuable
suggestions and
guidance, which has
been helpful in
various phases of the
completion of this
project.
Last but not least, I am
grateful to the
The Internet has
helped me with the
most bountiful
information
ACKNOWLEDGEMENT
In the accomplishment of this project successfully many people who best have owed me their blessings and the heart
pledged support, this time I am utilizing this to thank all the people who have been concerned with this project. Firstly
I thank God for making me able to yield within the span of completing this project. Then I would like to thank my
principal and Teacher, whose valuable guidance helped me patch this project and make it a full proof success. My
teacher’s suggestions and instructions have served as a major contributor towards the completion of this project.
Also, I would like to thank my parents and friends who have helped me
with their valuable suggestions and guidance, which have been helpful in various phases of completing this project.
Last but not least, I am grateful to the internet which has helped me with the most bountiful information

Certificate of Acknowledgment
This is to certify that Brahmesh, a student of Class 11 A at Kendriya Vidyalaya, INS Hamla, under the guidance of PGT
Computer Science , Mr. Bhagat Singh Rajawat, has completed the Investigatory Project titled The Billing Software
We commend Brahmesh for their outstanding efforts and congratulate them on the completion of this Investigatory
Project. We believe that this experience has not only enriched their academic knowledge but has also equipped them
with valuable skills for future endeavors.

Signed,

Principal Mr. Bhagat Singh Rajawat


Kendriya Vidyalaya, INS Hamla PGT Computer Science

INDEX
INTRODUCTION
1. Varieties
2.
Manufacture
3. History

Good
effects

Bad effects
AIM
CHEMICAL
REQUIRED
PROCEDURE
FOR
ANALYSIS
1.
Protein
test
2.
Fat
test
3.
Calcium
test
4.
Iron test
5.
Magnesium
test
6. Nickel test
CONCLUSION
BIBLIOGRA
The Source Code
while True:
print("Welcome to billing software!")
print("Payment methods")
print("1: Cash")
print("2: UPI")
print("3: Card")

name = input('Enter the name of the customer: ')


address = input('Enter the address of the customer: ')
payment = int(input('Enter the mode of payment (1 for Cash, 2 for UPI, 3 for Card): '))
num_items = int(input("Enter how many items the customer has taken: "))

items = [] # List to store item names and prices


total_price = 0

for i in range(num_items):
item_name = input("Enter the name of the item: ")
item_price = float(input("Price of the item: "))
items.append((item_name, item_price)) # Store item name and price in a tuple
total_price += item_price

discount = 0 # Initialize discount with a default value

if payment == 1: # Cash
discount = 0.05*total_price #for 5% discount
elif payment == 2: # UPI
discount = 0.10* total_price #for 10% discount
elif payment == 3: # Card
discount = 0.07* total_price #for 7% discount
carry_bag = input("Does the customer want a carry bag? (Type 'y' for yes, 'n' for no): ")
carry_bag_cost = 0
if carry_bag == "y":
carry_bag_cost = 10
GST = 0.18*(total_price-discount)
total_price_with_GST = ((total_price - discount) + GST + carry_bag_cost)

print("---------------------------------------------------------------
Invoice-------------------------------------------------------------------")
print("Name of the customer is:", name)
print("Address of the customer is:", address)

if payment == 1:
print("Mode of payment: Cash")
print("You got a 5% discount")
elif payment == 2:
print("Mode of payment: UPI")
print("You got a 10% discount")
elif payment == 3:
print("Mode of payment: Card")
print("You got a 7% discount")

print("Discount is Rs.", discount)


print("Items purchased:")
for item in items:
print("Item:", item[0])
print("Price:", item[1])

print("Total without GST is Rs.", total_price - discount)


print("GST is Rs.", GST)
print("Carry Bag cost is Rs.", carry_bag_cost)
print("Total price with GST is Rs.", total_price_with_GST)

user_input = input("Press Enter key to enter another entry or '0' to exit: ")
if user_input == "0":
break
The Inputs
The Outputs

You might also like