Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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.
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 bar chart to visualize them using Matplotlib. After drawing such chart, please
save it to be a .png file.
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