Assignment title: Information


1) Modify the program to allow for the entry of names and FICO scores by a file in which there are two fields Name and FICO. 2) Check the Name field to ensure that it in not blank-if it is report an error (pint the error with the input fields). 3) Check the FICO score to ensure that it is between 300 and 850 if not report an error (print the error with the input fields). 4) If there are no errors determine if the applicant is approved (no changes in the logic) and if approved the rate of the loan. 5) Print the Name, FICO, Rate (if approved) or "Denied" if not approved. 6) Read the file until there are no more records. Remember that the end of file is indicated by "" (null). Remember to also Open and Close the file that you are using. The program is attached as "LoanApp.py" and the data file is "Apps.dat". P.S I will attach two files with the code that should be modified and the data file that should be used as input. The code is LoanApp.py and the data is Apps.dat both put into an archive P.S also, my professor said I need to split the line in order to read score and names from the data file.