format_bytes()

Learn how to use the format_bytes() function to format a number as a string representing the data size in bytes.

Formats a number as a string representing data size in bytes.

Syntax

format_bytes(size [, precision [, units]])

Parameters

NameTypeRequiredDescription
sizereal✔️The value to be formatted as data size in bytes.
precisionintThe number of digits the value will be rounded to after the decimal point. The default is 0.
unitsstringThe units of the target data size: Bytes, KB, MB, GB, TB, PB, or EB. If this parameter is empty, the units will be auto-selected based on input value.

Returns

A string of size formatted as data size in bytes.

Examples

print 
v1 = format_bytes(564),
v2 = format_bytes(10332, 1),
v3 = format_bytes(20010332),
v4 = format_bytes(20010332, 2),
v5 = format_bytes(20010332, 0, "KB")

Output

v1v2v3v4v5
564 Bytes10.1 KB19 MB19.08 MB19541 KB