Question
Program in Python please Find the sales amount: You have just started a sales job in a department store. Your pay consists of a base
Program in Python please
Find the sales amount: You have just started a sales job in a department store. Your pay consists of a base salary plus a commission. The base salary is $5500. The following table shows how to determine the commission rate:
Sales Amount Commission Rate
$0.01 - $5500 8 %
$5500.01 - $11000 10 %
$11100.01 and above 12 %
Write a function that computes the commission. The header of the function is:
def computeCommission(salesAmount):
Write a program that displays the following table:
Sales Amount Commission
11000 990
16000 1590
21000 2190
..
76000 8790
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started