Files
to_session/ton/test/1.py
Administrator a0720d80dc fefdwef
2025-11-12 12:54:37 +08:00

11 lines
196 B
Python

import math
def get_num(original_value):
base = 1000000000
converted_value = original_value / base
rounded_value = math.floor(converted_value * 100) / 100
return rounded_value