Question: Using Python (3), debug the following assignment: Please indicate the following changes you've made to the preexisting program provided... Project 5-1: Tax Calculator (Debug) Debug
Using Python (3), debug the following assignment: Please indicate the following changes you've made to the preexisting program provided... 

Project 5-1: Tax Calculator (Debug) Debug an existing program. Console Sales Tax Calculator Total amount: 99.99 Total after tax: 105.99 Specifications Your instructor should provide a program file named p5-1_sales_tax.py. Your job is to test this program and to find and fix all of the syntax, runtime, and logic errors that it contains. The sales tax should be 6% of the total. . !/usr/bin/env python3 TAX-0.06 def sales_tax (total) sales taxtotal tax return total def main): print("Sales Tax Calculator ") total float (input ("Enter total: ")) total_after_tax - round (total + sales_tax(total), 2) print("Total after tax: ", total_after_tax) if name --"main main()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
