Question: Python 3 I will give thumbs up for all the correct answers. Paste code that I can copy easily and also show your output Question:
Python 3
I will give thumbs up for all the correct answers.
Paste code that I can copy easily and also show your output Question:

Write a function to get the statistics of quarter sales. This function accepts a list, by iterating this list, this function can return a dictionary. For example, the sales are 100, 50, 70, 105, 90, 59, 78, 200, 130, 180, 60, 105 million from January to December respectively, so by passing the list of [100, 50, 70, 105, 90, 59, 78, 200, 130, 180, 60, 105] to this function, we can get a dictionary of {"First quarter': 220, 'Second quarter': 254, 'Third quarter': 408, 'Fourth quarter": 345). Then based on this dictionary to draw a Pie chart to visualize them and focus on the quarter with highest sales using Matplotlib
Step by Step Solution
There are 3 Steps involved in it
To solve this problem we can define a function quartersalesstatistics that calculates sales for each ... View full answer
Get step-by-step solutions from verified subject matter experts
