Commission Table
You have just started a sales job in the Acme department store. Your pay consists of a base salary and a commission. The base salary is $10,000.00. The scheme shown below is used to determine the commission rate:
Sales Amount Commission Rate
$0.01 - $10,000 7.50 percent
$10,000.01 - $20,000 11.25 percent
$20,000.01 and above 14.50 percent
Note that this is a graduated rate. The rate for the first $10,000 is at 7.5%, the next $10,000 is at 11.25%, and the rest is at 14.5%. If the sales amount is $25,000, the commission is 10000 * 7.5% + 10000 * 11.25% + 5000 * 14.5% = 2600.
Create a Python program called “CommissionTable.py” that contains a main function that calls another function that prints the Acme header (see sample output below) and then calls another function that computes a commission table using the commission rates described above. The headers of the called functions are as follows:
printHeader() returns nothing, and computeCommission(salesAmount) returns commission
You need to format your table in appropriate dollars and cents. Formatting examples are located in TestChapter02.py.
Sample output:
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme