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