Sulayman A.

asked • 09/15/16

TAX LAB ON PYTHONS

Home Study Test
The curriculum includes everything that’s required to fully grasp the fundamentals of computer science, and gain a thorough understanding of computer science best practices through Python. By covering this curriculum, you will be comfortable with computing concepts -- empowering you to engage with a vibrant community of like-minded learners with all levels of experience.

TAX LAB
Country X calculates tax for its citizens using a graduated scale rate as shown below:
1. Yearly Income: 0 - 1000
Tax Rate: 0%
2. Yearly Income: 1,001 - 10,000
Tax Rate: 10%
3. Yearly Income: 10,001 - 20,200
Tax Rate: 15%
4. Yearly Income: 20,201 - 30,750
Tax Rate: 20%
5. Yearly Income: 30,751 - 50,000
Tax Rate: 25%
6. Yearly Income: Over 50,000
Tax Rate: 30%
Write a Python function named calculate_tax that will take as an argument, a dictionary containing key-value pairs ofpeople's names as the keys and their yearly incomes as the values.
The function should return a dictionary containing key-value pairs of the same people’s names as keys and their yearly tax bill as the values. For example, given the sample input below:
{
‘Alex’: 500,
‘James’: 20500,
‘Kinuthia’: 70000
}
The output would be as follows:
{
‘Alex’: 0,
‘James’: 2490,
‘Kinuthia’: 15352.5
}
The tax for James would be calculated as follows:
1. The first 1000 (1000 - 0)
Calculation: 1,000 * 0%
Tax: 0
2. The next 9000 (10,000 - 1,000)
Calculation: 9,000 * 10%
Tax: 900
3. The next 10,200 (20,200 -10,000)
Calculation: 10,200 * 15%
Tax: 1530
4. The remaining 300 (20,500 - 20,200)
Calculation: 300 * 20%
Tax: 60
5. Total Income: 20,500
Total Tax: 0 + 900 + 1530 + 60 = 2490
(1) TEST QUESTIONS : 1
from unittest import TestCase

class CalculateTaxTests(TestCase):
def test_it_calculates_tax_for_one_person(self):
result = calculate_tax({"James": 20500})
self.assertEqual(result, {"James": 2490.0}, msg="Should return {'James': 2490.0} for the input {'James': 20500}")

def test_it_calculates_tax_for_several_people(self):
income_input = {"James": 20500, "Mary": 500, "Evan": 70000}
result = calculate_tax(income_input)
self.assertEqual({"James": 2490.0, "Mary": 0, "Evan": 15352.5}, result,
msg="Should return {} for the input {}".format(
{"James": 2490.0, "Mary": 0, "Evan": 15352.5},
{"James": 20500, "Mary": 500, "Evan": 70000}
)
)

def test_it_does_not_accept_integers(self):
with self.assertRaises(ValueError) as context:
calculate_tax(1)
self.assertEqual(
"The provided input is not a dictionary.",
context.exception.message, "Invalid input of type int not allowed"
)

def test_calculated_tax_is_a_float(self):
result = calculate_tax({"Jane": 20500})
self.assertIsInstance(
calculate_tax({"Jane": 20500}), dict, msg="Should return a result of data type dict")
self.assertIsInstance(result["Jane"], float, msg="Tax returned should be an float.")

def test_it_returns_zero_tax_for_income_less_than_1000(self):
result = calculate_tax({"Jake": 100})
self.assertEqual(result, {"Jake": 0}, msg="Should return zero tax for incomes less than 1000")

def test_it_throws_an_error_if_any_of_the_inputs_is_non_numeric(self):
with self.assertRaises(ValueError, msg='Allow only numeric input'):
calculate_tax({"James": 2490.0, "Kiura": '200', "Kinuthia": 15352.5})

def test_it_return_an_empty_dict_for_an_empty_dict_input(self):
result = calculate_tax({})
self.assertEqual(result, {}, msg='Should return an empty dict if the input was an empty dict')

1 Expert Answer

By:

Still looking for help? Get the right answer, fast.

Ask a question for free

Get a free answer to a quick problem.
Most questions answered within 4 hours.

OR

Find an Online Tutor Now

Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.