Skip to content

Instantly share code, notes, and snippets.

@Erica-Iris
Created January 26, 2023 13:13
Show Gist options
  • Save Erica-Iris/b7106d829e318d145f6260237bc1042e to your computer and use it in GitHub Desktop.
Save Erica-Iris/b7106d829e318d145f6260237bc1042e to your computer and use it in GitHub Desktop.
sizeof_fmt
def sizeof_fmt(num, suffix="iB"):
for unit in ["", "K", "M", "G", "T", "P", "E", "Z"]:
if abs(num) < 1024.0:
return "%3.2f%s%s" % (num, unit, suffix)
num /= 1024.0
return "%.2f%s%s" % (num, "Y", suffix)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment