Problem
Create a single .py program that performs the following tasks:
I. Modify the provided "Biggest" function to accept three variables, which could be string, int or float, and then convert them to float and return the highest float
II. Convert your modified NumFileGen and NumFileReader scripts from Lab4, each to a function. Note: if your Lab4 scripts need to be fixed to comply with the Lab4 requirements, do that before converting them to functions.
i. For NumFileGen, pass the arguments of the filename and number of values to generate.
ii. For NumFileReader, pass the argument of the filename. Return the List of integer values 3. Create a script that uses your NumFileGen function
III. Create a script that uses your NumFileReader function.