avatar Bite 269. Taxable Income Calculator

I have no idea what rabbit hole I followed to get to this point, but here I am. I found myself researching US tax brackets and how they are calculated. If you’re not from the US, don’t worry, you will still be able to figure it out and get this bad boy to pass.

US 2019 Tax Bracket

Here is the break-down on how much a US citizen’s income was taxed in 2019.

      $0 - $9,700   10%
  $9,701 - $39,475  12%
 $39,476 - $84,200  22%
 $84,201 - $160,725 24%
$160,726 - $204,100 32%
$204,101 - $510,300 35%
$510,301 +          37%

The US tax law is pretty complex, so for now, this is all we are going to be dealing with. No filing jointly or as head of household.

From looking at that bracket, you would think that someone having $40,000 of taxable income would be taxed $8,800, which is 22% of 40,000, but that is not the case.

How taxes are calculated

The actual taxes would be $4,658.50! Each level in the bracket is taxed at the amount shown. So the first $9,700 they would be taxed at 10%. The amount from $9,701 through $39,475 is taxed at 12%. Then the rest is then taxed at 22%.

    9,700.00 x 0.10 =       970.00
   29,775.00 x 0.12 =     3,573.00
      525.00 x 0.22 =       115.50
----------------------------------
              Total =     4,658.50

More details can be found here at nerdwallet or many other places that are just a search away.

Bite Challenge

So for this bite, you are going to be creating a class that will handle this all for you. I have created a Bracket namedtuple that you will use as the tax bracket. I’ve also created a Taxed namedtuple that you will use to store the taxed amounts.

Sample Run

Here is a sample output from running the code in the if __name__ == 'main' statement:

          Summary Report
==================================
 Taxable Income:        40,000.00
     Taxes Owed:         4,658.50
       Tax Rate:           11.65%

         Taxes Breakdown
==================================
    9,700.00 x 0.10 =       970.00
   29,775.00 x 0.12 =     3,573.00
      525.00 x 0.22 =       115.50
----------------------------------
              Total =     4,658.50

The Summary Report is what will be returned when you print() the class. The whole report though, needs to be generated from the report() method that you will have to code.

As usual, take a look at the source code and the docstrings for more details. I’ve left the type hints in the methods so that you will have an easier time with it, but if you need more direction, just let me know on Slack and I will add more details to these instructions.

Happy coding!

Login and get coding
go back Advanced level
Bitecoin 4X

41 out of 46 users completed this Bite.
Will you be Pythonista #42 to crack this Bite?
Resolution time: ~102 min. (avg. submissions of 5-240 min.)
Pythonistas rate this Bite 6.5 on a 1-10 difficulty scale.
» Up for a challenge? 💪

Focus on this Bite hiding sidebars, turn on Focus Mode.

Ask for Help