12 lines
245 B
Python
12 lines
245 B
Python
|
#! /usr/bin/python
|
||
|
# -*-coding:utf-8-*-
|
||
|
|
||
|
def format_size(size):
|
||
|
KiB_size = size / 1024
|
||
|
if KiB_size < 1000:
|
||
|
size_string = '%.1f KiB' % (KiB_size)
|
||
|
return size_string
|
||
|
else:
|
||
|
size_string = '%.2f MiB' % (KiB_size / 1024)
|
||
|
return size_string
|