mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
9 lines
261 B
Python
Executable File
9 lines
261 B
Python
Executable File
from math import floor, log
|
|
|
|
|
|
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])
|