Question: I need help developing several python functions in order to complete my assignment. The details are described in the images below. Sample output is provided
I need help developing several python functions in order to complete my assignment. The details are described in the images below. Sample output is provided in the screenshots as well. Thank you in advance.




Thank you again.
Microsoft Word Projecto3 C O www.cse.msu.ed 231/Online/Projects/Projecto3/Projecto3.pdf Apps For quick access, place your bookma s here on bookmarks bar. mport bookmarks now. (One note about thc data, GDP data gets adjusted in a varicty of ways, I havc cxtractcd two tables from a few thousand lines of tables in the original file. If you try to derive the annual change in GDP from the data on line 44, it will differ by as many as a few percentage points from the change data we are using from line 9. That is, some adjus ments are being donc that we are ignoring for this assignment.) Assignment Specifications The lines of interest in the file GDP txt are the 9 ne which has the annual change in GDP and the 44 ne which has the value of GDP for each year. The data starts in column 76 and each of the 47 data items spans 12 columns (there are 47 years inclusively from 1969 through 2015). These numbers are important because you can use string slicing to extract them. For example, the first data item in a line can be extracted using the slice line 76:76+121 Your task is to find the minimum and maximum change in GDP for the years 1969 through 2015 and to find the GDP value for those two years. See the sample output below. Your program will prompt for an input file and then display the output. You must use specific functions as described below and you are not allowed to use collections such as lists, tuples and dictionaries. Mirmir tests: I can provide any file with the same format as the provided the number of rows will be the same (so you can select lines 9 and 44), but the number of columns may be different (i.e. different years) Assignment Notes Divide-and-conquer is an important problem solving technique. In fact, inside of every challenging problem is a simpler problem trying to get out. Your challenge is to find those simpler problems and divide the problem into smaller pieces that you can conquer. Functions can assist in this approach. We provide skeleton code on Mirmir that has all the function skelctons for you to fill in Hint: build the following functions one at a time and test each one before moving on to the next. Bobby
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
