atwork-Mihir / Sales-Tax

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Task: Problem 1: SALES TAXES Basic sales tax is applicable at a rate of 10% on all goods, except books, food, and medical products that are exempt. Import duty is an additional sales tax applicable on all imported goods at a rate of 5%, with no exemptions. When I purchase items I receive a receipt which lists the name of all the items and their price (including tax), finishing with the total cost of the items, and the total amounts of sales taxes paid. The rounding rules for sales tax are that for a tax rate of n%, a shelf price of p contains (np/100 rounded up to the nearest 0.05) amount of sales tax. Write an application that prints out the receipt details for these shopping baskets...

INPUT:

Input 1:

1 book at 12.49 1 music CD at 14.99 1 chocolate bar at 0.85 Input 2: 1 imported box of chocolates at 10.00 1 imported bottle of perfume at 47.50 Input 3: 1 imported bottle of perfume at 27.99 1 bottle of perfume at 18.99 1 packet of headache pills at 9.75 1 box of imported chocolates at 11.25

Solution: For Problem1:

Logic used for program:

split Integer from String Compare the string with the conditions and apply arithematic solution to it.

Logic: As per the given statement, there are 4 values. 1). Product without any Tax 2). Product with only Sales Tax 3). Product with only Import Duty tax 4). Product with both Sales and Import duty tax

My conditions were split into 4 parts to attain the final price. This program checks in which category the product belongs too and applies tax as per evaluation is required. About Input : There are 3 txt files named as Input1, Input2 & Input3. Choose a text file and take it as input.

At the end, when the program is finished running you can see the output saved as a text file named as TexT on your device.

About


Languages

Language:Python 100.0%