Python 3.8.2 (v3.8.2:7b3ab! [Clang 6.0 (clang-600.0.57 Type "help", "copyright", 1
»>
#
#
#
#
#
#
#
#
#
CSCI 127, Joy and Beauty of Data Lab 2: Tax Calculator Lucy Williams Datę: 5/21/2020
Calculate the amount of tax owed by an| unmarried taxpayer in tax year 2020.
# The missing Python function goes here.
# ---------------------------------- def process(income):
printCThe 2020 taxable income is SU: .2f}".format(income)) tax_owed = unmarried_individual_tax(income)
printCAn unmarried individual owes ${:.2f>\n".format(tax_owed))
#■ def main():
# |
test |
case |
1 |
# |
test |
case |
2 |
# |
test |
case |
3 |
# |
test |
case |
4 |
# |
test |
case |
5 |
# |
test |
case |
6 |
# |
test |
case |
7 |
process(5000)
process(20000)
process(50000)
process(100000)
process(200000)
process(400000)
process(600000)
# — main()