Assignment Part 1 Write a program to ask for a series of floating point numbers. Continue to ask for numbers until the user enters -1. Add each valid value to a list. Once the user has finished...

1 answer below »
Assignment Part 1 Write a program to ask for a series of floating point numbers. Continue to ask for numbers until the user enters -1. Add each valid value to a list. Once the user has finished entering data ask for a file name. You may use input or FileUtils to ask for the file name. Write out each number to the data file, one number per line. Make sure to end each line with a newline (“\n”) character. Part 2 Write each of the following functions. The function header must be implemented exactly as specified. Write a main function that tests each of your functions. Specifics In the main function ask for a filename from the user and call fillListFromFile. This will return a list with the values from the file. Each file should have one numeric value per line. Do not create this data file in this program. Then call each of the required functions and then display the results returned from the functions. Remember that the functions themselves will not display any output, they will return values that can then be written to the screen. If there are built in functions in Python that will accomplish the tasks lists below YOU CANNOT USE THEM. The purpose of this lab is to get practice working with lists, not to get practice searching for methods. DO NOT sort the list, that changes the order of the items. The order of the values in the list should be the same as the order of the values in the file. For each function that returns a numeric value determined from the list, unless otherwise stated in the function, if you are unable to determine a value return None
Answered 1 days AfterMar 26, 2022

Answer To: Assignment Part 1 Write a program to ask for a series of floating point numbers. Continue to ask for...

Vaibhav answered on Mar 27 2022
97 Votes
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here