I am creating a program that reads a file and if the first line of the file is not blank, it reads the next four lines. Calculations are performed on those lines and then t
So if you have
floatInString = '5.0'
You can convert it to int with floatInInt = int(float(floatInString))
int
floatInInt = int(float(floatInString))