Question: PYTHON PROGRAMMING ONLY Please I need help with the algorithm of the following problem: A program that reads the price and the tax rate of
PYTHON PROGRAMMING ONLY
Please I need help with the algorithm of the following problem:
A program that reads the price and the tax rate of an item as float values, and shows the information such as item#, price, tax rate and item price on the screen. The following is an example of a run:
Item# Price Tax Rate(%) Item Price
1 100.00 12.00% 112.00
Item Price = Price + (Price*Tax Rate).
Note: Please organize the output by appropriate use of the format function. All details of the purchased items are required to be right-justified in their columns, Price, Tax Rate, Item Price, and Total Amount are required to be shown as floats with precision of 2 digits. Item# must be an integer and left-justified. A minimum field of 15 should be used for all the outputs.
Please I would prefer a picture of the actual .py file ran. Thanks
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
