mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 10:56:24 +00:00
8 lines
269 B
Python
Executable File
8 lines
269 B
Python
Executable File
from math import log, floor
|
|
|
|
def human_format(number):
|
|
units = ["", " Thousand", " Million", " Billion", " Trillion", " Quatrillion"]
|
|
k = 1000.0
|
|
magnitude = int(floor(log(number, k)))
|
|
return "%.2f%s" % (number / k ** magnitude, units[magnitude])
|