ACKNOWLEDGEMENT
ACKNOWLEDGEMENT
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,
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")
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
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")
user_input = input("Press Enter key to enter another entry or '0' to exit: ")
if user_input == "0":
break
The Inputs
The Outputs