Question: Now let's reverse the process and convert number of degrees in decimal form to integer variables named degrees, minutes, and seconds. The following page has
Now let's reverse the process and convert number of degrees in decimal form to integer variables named degrees, minutes, and seconds. The following page has such a calculator followed by an explanation of the math involved: https://www.rapidtables.com/convert/number/degrees-to-degrees-minutes-seconds.html. You should round seconds to the nearest integer value. Please note that int truncates decimal values. So int(14.897) would equal 14. To round to the nearest integer use int(round()). Try it. You will see that int(round(14.897)) is 15. assert(deg_min_sec(42.36)==(42,21,36))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
