25 lines
677 B
Python
25 lines
677 B
Python
"""
|
|
Handy financial calculations.
|
|
"""
|
|
import math
|
|
import itertools
|
|
|
|
|
|
def humanize(number):
|
|
"""Convert large numbers to something with at most 3 digits and
|
|
a letter suffix (eg. k: thousand, M: million, B: billion).
|
|
"""
|
|
if number <= 0:
|
|
return number
|
|
mag2suffix = {3: 'k', 6: 'M', 9: 'B'}
|
|
mag = math.floor(math.log(number, 10))
|
|
maxmag = max(itertools.takewhile(lambda key: mag >= key, mag2suffix))
|
|
return "{:.3f}{}".format(number/10**maxmag, mag2suffix[maxmag])
|
|
|
|
|
|
def percent_change(init, new):
|
|
"""Calcuate the percentage change of some ``new`` value
|
|
from some initial value, ``init``.
|
|
"""
|
|
return (new - init) / init * 100.
|