Hvor can I en python do the following rounding:
Round to the nearest 05 decimal
7,97 -> 7,95
6,72 -> 6,70
31,06 -> 31,05
36,04 -> 36,
Here's a one liner
def roundto(number, multiple): return number+multiple/2 - ((number+multiple/2) % multiple)