format_bytes()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
將數位格式化為字元串,以位元組表示數據大小。
語法
format_bytes(
size [ precision [,
,
units]])
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
size | real |
✔️ | 要格式化為以位元組為單位的數據大小的值。 |
有效位數 | int |
值將在小數點之後四捨五入到的數位數目。 預設值是 0。 | |
單位 | string |
目標資料大小的單位:Bytes 、、、KB MB 、GB 、TB 、 PB 或 EB 。 如果此參數是空的,則會根據輸入值自動選取單位。 |
傳回
大小字串,格式化為以位元組為單位的數據大小。
範例
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")
輸出
v1 | v2 | v3 | v4 | v5 |
---|---|---|---|---|
564 個字節 | 10.1 KB | 19 MB | 19.08 MB | 19541 KB |