6 lines
125 B
Python
6 lines
125 B
Python
from decimal import Decimal, ROUND_HALF_UP
|
|
|
|
|
|
def round_half_up(val):
|
|
return int(Decimal(val).quantize(0, ROUND_HALF_UP))
|