Question

In: Computer Science

Write python code which displays the sales commission based on the total sale and the employee’s...

Write python code which displays the sales commission based on the total sale and the employee’s region, using on the following table.

Total Sale

Region

Commission

Under $2,500

East

5%

$2,500 or more

East

7.5%

Under $2,500

West

10%

$2,500 or more

West

12.5%

Solutions

Expert Solution

(In the sample o/p screenshots the values in black color are the values we input. WHen you input region the first letter of region is capital)

Code Explanation:

  • Input total sales and region
  • if total sales is less than 2500 and region is east then the commission is 5%
  • if total sales is greater than or equal to 2500 and region is east then the commission is 7.5%
  • if total sales is less than 2500 and region is west then the commission is 10%
  • if total sales is greater than or equal to 2500 and region is west then commission is 12.5%

Code:

total_sale = int(input("Enter total sales: "))
region =input("Enter region: ")
if(total_sale < 2500 and region == "East"):
sales_commission = 5/100*total_sale
  
if(total_sale >= 2500 and region == "East"):
sales_commission = 7.5/100*total_sale
  
if(total_sale < 2500 and region == "West"):
sales_commission = 10/100*total_sale

if(total_sale >= 2500 and region == "West"):
sales_commission = 12.5/100*total_sale

print("sales commission is: ", sales_commission)
  

Sample O/P1:

Enter total sales: 2600
Enter region: East
sales commission is: 195.0

Sample O/P2:

Enter total sales: 2000
Enter region: East
sales commission is: 100.0

Sample O/P3:

Enter total sales: 2700
Enter region: West
sales commission is: 337.5

Sample O/P4:

Enter total sales: 1900
Enter region: West
sales commission is: 190.0

Code Screenshot:

Sample O/P1 screenshot:

Here total sales is 2600 which is greater than 2500. and region is East. From the given condition

when total sales > 2500 and region is east commission is 7.5%. So 7.5% of 2600 = 195

Sample O/P2 screenshot:

Here total sales is 2000 which is less than 2500. and region is East. From the given condition when

total sales < 2500 and region is east commission is 5%. So 5% of 200 = 100

Sample O/P3 screenshot:

Here total sales is 2700 which is greater than 2500. and region is West. From the given condition

when total sales > 2500 and region is Wast commission is 12.5%. So 12.5% of 2700 = 337.5

Sample O/P4 screenshot:

Here total sales is 1900 which is less than 2500. and region is West. From the given condition

when total sales < 2500 and region is West commission is 10%. So 10% of 1900 = 190

(If you still have any doubts please comment I will definitely help)


Related Solutions

Based on the following Python code, write a Python statement which outputs “December” when the value...
Based on the following Python code, write a Python statement which outputs “December” when the value of the Month is 12 or “November” when the value of the Month is 11 or “Neither” when value of the Month is neither 11 or 12. The user enters the value which is store in the variable namedMonth. Month = int(input("Please enter the value of the month in numerical format such as 11 for November, or 12 for December: " )) sing Python
Answer question in Python, show all code: Write a program that calculates and displays the end...
Answer question in Python, show all code: Write a program that calculates and displays the end of year balances in a savings account if $1,000 is put in the account at 6% interest for five years. For this problem, assume interest is calculated annually. (That is, if I put $1000 in a bank account at the beginning of the year, then the balance at the end of the year is $1,000 + $1,000*6%.) You may assume no money is removed...
Write a program function code in Python that prompts the user to enter the total of...
Write a program function code in Python that prompts the user to enter the total of his/her purchase and add 5% as the VAT. The program should display the total without and with VAT. ( that mean i should ask the user to enter the number of their item " so i think that i should use range" then print the result with and without the VAT )
I need to write this program in Python. Write a program that displays a temperature conversion...
I need to write this program in Python. Write a program that displays a temperature conversion table for degrees Celsius and degrees Fahrenheit. The tabular format of the result should include rows for all temperatures between 70 and 270 degrees Celsius that are multiples of 10 degrees Celsius (check the sample below). Include appropriate headings on your columns. The formula for converting between degrees Celsius and degrees Fahrenheit is as follow F=(9/5C) +32 Celsius Fahrenheit 70 158 80 176 90...
Using the first code of this lab (Figure 1), write a code that displays the status...
Using the first code of this lab (Figure 1), write a code that displays the status of a push button on the LCD, that is, when you press it you should see “Pushed” on the LCD and when you release it, you should see “Released” #include <LiquidCrystal.h> // initialize the library with the numbers of the interface pins LiquidCrystal lcd(12, 11, 5, 4, 3, 2); void setup() { // set up the LCD's number of columns and rows: lcd.begin(16, 2);...
why would manager care about total sales,total collections, % collected( =collections/sales) and total commission( formula is...
why would manager care about total sales,total collections, % collected( =collections/sales) and total commission( formula is if % collected<35%, commission= $0, if %collected > 35%, commission= sales* 5%)
IN PYTHON: Write a program that displays the lines from the total.txt file in the following...
IN PYTHON: Write a program that displays the lines from the total.txt file in the following output. Use a try catch phrase to check for errors. Use only one function for this portion [main()]. Remember to use Python. Sample output below: 19 16, 29 3, 30 4, 34
Create a Python program that: Creates a sales receipt, displays the receipt entries and totals, and...
Create a Python program that: Creates a sales receipt, displays the receipt entries and totals, and saves the receipt entries to a file Prompt the user to enter the Item Name Item Quantity Item Price Display the item name, the quantity, and item price, and the extended price (Item Quantity multiplied by Item Price) after the entry is made Save the item name, quantity, item price, and extended price to a file When you create the file, prompt the user...
Create a python program that: Creates a sales receipt, displays the receipt entries and totals, and...
Create a python program that: Creates a sales receipt, displays the receipt entries and totals, and saves the receipt entries to a file Prompt the user to enter the Item Name Item Quantity Item Price Display the item name, the quantity, and item price, and the extended price (Item Quantity multiplied by Item Price) after the entry is made Save the item name, quantity, item price, and extended price to a file When you create the file, prompt the user...
Write a python code which prints triangle of stars using a loop ( for loop )...
Write a python code which prints triangle of stars using a loop ( for loop ) Remember what 5 * "*" does The number of lines of output should be determined by the user. For example, if the user enters 3, your output should be: * ** *** If the user enters 6, the output should be: * ** *** **** ***** ****** You do NOT need to check for valid input in this program. You may assume the user...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT