首页 > 编程语言 > 详细

python 实现 byte 可视化转换

时间:2020-09-10 17:47:57      阅读:93      评论:0      收藏:0      [点我收藏+]

python 实现 byte 可视化转换

制作命令行工具过程中,因需要展示文件大小,所以造了个轮子,实现了以下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)

python 实现 byte 可视化转换

原文:https://www.cnblogs.com/shu-sheng/p/13646858.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!