I'm working with latitude/longitudes that end in either .25
or .75
. I want to prompt a user for a lat/lon and have the program round it to a lat/lon ending in .25 or .75. I cannot round to .00 or .5, ONLY .25 or .75.
For examaple, if a user enters 43.04, I need Python to round that to 43.25.
I'm using Enthought Canopy Python distribution and am new to Python. Any suggestions for this?