制作命令行工具过程中,因需要展示文件大小,所以造了个轮子,实现了以下byte可视化转换。
如果哪位仁兄知道有现成的轮子,劳烦留言告知一声。
以下是代码实现。
def unit_conversion(size):
ratio = 2 ** 10
units = [‘B‘, ‘KB‘, ‘MB‘, ‘GB‘, ‘TB‘, ‘PB‘, ‘EB‘, ‘ZB‘, ‘YB‘]
level = 0
size = int(size)
if size < 0:
try:
raise ValueError
except ValueError as e:
print(‘Please enter the correct parameters‘, repr(e))
for unit in units:
if size > ratio:
size = size / ratio
level += 1
continue
else:
size = ‘%.1f %s‘ % (size, unit)
return size
print(‘这个大小多少有点过分‘)
a = byte_to_size(3983241232393812)
print(a)
原文:https://www.cnblogs.com/shu-sheng/p/13646858.html