Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Assignment Specifications The lines of interest in the file GDP.txt are the 9th line which has the annual change in GDP and the 44th line

Assignment Specifications The lines of interest in the file GDP.txt are the 9th line which has the annual change in GDP and the 44th line 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+12]. 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 GDP.txtthe 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 skeletons for you to fill in. Hint: build the following functions one at a time and test each one before moving on to the next. 1. The open_file()function takes no arguments and returns a file pointer. It repeatedly prompts for file names until a file successfully opens. Use the try-except construct checking for the FileNotFoundError exception. You do not need to check that the filename is correctsimply check that the file opened. The simplest version of this function has no error checking so the body of the function is simply fp = open(GDP.txt) return fp Hint: Start with that as your function body and add the try-except error checking later. 2. The find_min_percent(line) function takes one argument, one line (str) from the GDP.txt file. It returns the minimal value (float) in that line and an index (int) indicating where the minimal value is in the line (you get to decide what value is the indexthere are multiple possibilities). You can return two values simply by separating them by commas: return min_value, min_value_index Here is an algorithm to find a minimal value of a series of values that you read. The algorithm is written in pseudo-code so it looks somewhat like Python, but needs details of Python to be complete: min_value = 10000000 # some large value for each value if value < min_value: # you have found a smaller value min_value = value # set min_value to that smaller value Hint: Start by having your function simply print all the values in the line. That way you can check that you are examining all the values. Once you can print all the values you can apply the minimum algorithm to find the minimal value. 3. The find_max_percent(line) function takes one argument, one line from the GDP.txt file. It returns the maximum value in that line and an index indicating where the maximum value is in the line. This function is nearly identical to the find_min_percent function. Instead of starting with a large value you start with a small value and reverse the operator in the Boolean expression. 4. The find_gdp(line,index) function takes two arguments, one line from the GDP.txt file and an index into the line. It returns the GDP value in that line at the specified index. Note that this function can be used to find the GDP value associated with the minimal percent change as well as the maximal percent changesimply call the function with a different index. 5. The display(min_val, min_year, min_val_gdp, max_val, max_year, max_val_gdp) function takes six arguments: the minimal value, year and GDP, and the same three for maximum (value, year, GDP). The function does not return anything. It displays the values as shown in the sample below. Note that the GDP values in the file are in billions whereas we expect you to convert billions to trillions for the output. Use the following format string for displaying values: "{:<10s}{:>8.1f}{:>6d}{:>18.2f}" 6. The main() function loops through the file to access lines 9 and 44, and sets up values for the call to display function. 7. You are not allowed to use collections such as list, tuples and dictionaries. Specifically, do not use the string .split() methodit returns a list. Use string slicing to extract values from lines in the file. 8. You will be responsible for adhering to items 1-6 of the Coding Standard. please basic python code would be very helpful

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Tobacco Industry IRS Audit Techniques Guide

Authors: Internal Revenue Service

1st Edition

1304114910, 978-1304114914

More Books

Students also viewed these Accounting questions

Question

Effective Delivery Effective

Answered: 1 week ago