import math def floor_precised(number, precision): power = math.pow(10, precision) return math.floor(number * power) / power ...
確定! 回上一頁