After creating my own file (“w”), I would like to know how to:
* Write floating point data to file
* Print (or otherwise view) entire contents of file to confirm it contains all the float data I wrote to the file
After re-opening my file (“r”), I would like to know how to:
* Read content of this file, line by line.
* Print (or otherwise view) contents of file to re-confirm it contains all the float data I wrote to it
* Use the float data contained in my file for doing math calculations
* Save calculation results (floats) to another file
* Print (or otherwise view) contents of this other file to re-confirm it contains all the calculation results