11 lines
196 B
Python
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
|