I've looked into a few ways of representing numbers in a small space (in Django) and whilst their django.contrib.humanize.intword works great, i'd prefer if it said M instead of million for example. I know this wouldn't work with exceptionally large numbers (10^15 and 10^18 both start with Q).
I basically need four different unit names up to trillion: K, M, B and T. Are there any packages that allow a lot of configuration with numbers?
I've not posted any code because what I have works but not quite how i'd like it, this is just a question to see if there is a better way to get the numbers i'm hoping for.