Question
Please program in Python language A company has four salespeople (1 to 4) who sell five different products (1 to 5). Once a day, each
Please program in Python language
A company has four salespeople (1 to 4) who sell five different products (1 to 5). Once a day, each salesperson passes in a slip for each different type of product sold. Each slip contains: a) The salesperson number. b) The product number. c) The number of that product sold that day. Thus, each salesperson passes in between 0 and 5 sales slips per day. Assume that the information from all of the slips for last month is available. Write a program that will read all this information for last months sales and summarize the total sales by salesperson by product. All totals should be stored in list sales. After processing all the information for last month, display the results in tabular format with each of the columns representing a particular salesperson and each of the rows representing a particular product. Cross total each row to get the total sales of each product for last month; cross total each column to get the total sales by salesperson for last month. Your tabular printout should include these cross totals to the right of the totaled rows and to the bottom of the totaled columns.
This program calculates sales totals. Enter salesperson (-1 to quit): 1 Enter product number: 1 Enter salesperson (-1 to quit): 2 Enter product number: 5 Enter salesperson (-1 to quit): 3 Enter product number: 4 Enter salesperson (-1 to quit): 2 Enter product number: 2 Enter salesperson (-1 to quit): 1 Enter product number: 5 Enter salesperson (-1 to quit): 3 Enter product number: 5 Enter salesperson (-1 to quit): 4 Enter product number: 1 Enter salesperson (-1 to quit): 4 Enter product number: 2 Enter salesperson (-1 to quit): 3 Enter product number: 5 Enter salesperson (-1 to quit): -1 Product Total Product Sold [1] [2] [3] [4] [5] [1] 1 0 0 0 1 Salesperson [2] [3] 0 0 1 0 0 1 1 2 HOO [4] 1 1 0 0 0 2 2 0 1 Total: N 2 3 NStep 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