3 lines
69 B
Python
3 lines
69 B
Python
|
|
def round_to_multiple(value, base):
|
|
return value - value % base
|