Basic Python Programming: for loops and reading files

The input to the program will be the launch angle (in degrees), the initial ... Our input angle is in degrees, and the Python math library uses radians, so theta = (π*angle)/180 . theta = (angle * pi)/180.0 ... This gives us a function with five parameters and three return values. Yuck! There must be a better way! ................
................