subject

Sales Report Create a program that displays a report of sales by quarter for a company with four sales regions (Region 1, Region 2, Region 3, and Region 4). Console Sales Report Region Q1 Q2 Q3 Q4 1 1,540.00 2,010.00 2,450.00 1,845.00 2 1,130.00 1,168.00 1,847.00 1,491.00 3 1,580.00 2,305.00 2,710.00 1,284.00 4 1,105.00 4,102.00 2,391.00 1,576.00 Sales by region: Region 1: 7,845.00 Region 2: 5,636.00 Region 3: 7,879.00 Region 4: 9,174.00 Sales by quarter: Q1: 5,355.00 Q2: 9,585.00 Q3: 9,398.00 Q4: 6,196.00 Total annual sales, all regions: $30,534.00 Specifications ď‚· The quarterly sales numbers for each region should be hard-coded at the beginning of the program as a list of lists like this: sales = [[1540.0, 2010.0, 2450.0, 1845.0], # Region 1 [1130.0, 1168.0, 1847.0, 1491.0], # Region 2 [1580.0, 2305.0, 2710.0, 1284.0], # Region 3 [1105.0, 4102.0, 2391.0, 1576.0]] # Region 4

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 19:30
Keep your choice of a major there is probably no single correct choice.
Answers: 1
question
Computers and Technology, 22.06.2019 18:30
Which of these options are the correct sequence of actions for content to be copied and pasted? select content, click the copy button, click the paste button, and move the insertion point to where the content needs to be inserted. click the copy button, select the content, move the insertion point to where the content needs to be inserted, and click the paste button. select the content, click the copy button, move the insertion point to where the content needs to be inserted, and click the paste button. select the content, move the insertion point to where the content needs to be inserted, click the copy button, and click the paste button.
Answers: 3
question
Computers and Technology, 23.06.2019 03:30
Many everyday occurrences can be represented as a binary bit. for example, a door is open or closed, the stove is on or off, and the fog is asleep or awake. could relationships be represented as a binary value? give example.
Answers: 1
question
Computers and Technology, 23.06.2019 15:30
1. ask the user how many questions are in the quiz. 2. ask the user to enter the key (that is, the correct answers). there should be one answer for each question in the quiz, and each answer should be an integer. e.g., 34 7 13 100 81 3 9 10 321 12 might be the key for a 10-question quiz. you will need to store the key in an array. 3. ask the user to enter the answers for the quiz to be graded. there needs to be one answer for each question. note that these answers do not need to be stored; each answer can simply be compared to the key as it is entered. 4. when the user has entered all of the answers to be graded, print the number correct and the percent correct. 5. add a loop so that the user can grade any number of quizzes with a single key. after the results have been printed for each quiz, ask "grade another quiz? (y/n)." note: you only have one array (the key). you are not creating a new key for each set of quiz answers.
Answers: 3
You know the right answer?
Sales Report Create a program that displays a report of sales by quarter for a company with four sal...
Questions
Questions on the website: 13722363