Python字节单位转换(将字节转换为K M G T)


Posted in Python onMarch 02, 2021
def bytes_to_human(n):
  symbols = ('K','M','G','T','P','E','Z','Y')
  prefix = {}
  for i,s in enumerate(symbols):
    prefix[s] = 1 << (i + 1) * 10
  for s in reversed(symbols):
    if n >= prefix[s]:
      value = float(n) / prefix[s]
      return '%.1f%s' % (value,s)
  return '%sB' % n

python编写的储存单位转换代码(以字节(B)为单位)

def bytes(bytes):
  if bytes < 1024: #比特
    bytes = str(round(bytes, 2)) + ' B' #字节
  elif bytes >= 1024 and bytes < 1024 * 1024:
    bytes = str(round(bytes / 1024, 2)) + ' KB' #千字节
  elif bytes >= 1024 * 1024 and bytes < 1024 * 1024 * 1024:
    bytes = str(round(bytes / 1024 / 1024, 2)) + ' MB' #兆字节
  elif bytes >= 1024 * 1024 * 1024 and bytes < 1024 * 1024 * 1024 * 1024:
    bytes = str(round(bytes / 1024 / 1024 / 1024, 2)) + ' GB' #千兆字节
  elif bytes >= 1024 * 1024 * 1024 * 1024 and bytes < 1024 * 1024 * 1024 * 1024 * 1024:
    bytes = str(round(bytes / 1024 / 1024 / 1024 / 1024, 2)) + ' TB' #太字节
  elif bytes >= 1024 * 1024 * 1024 * 1024 * 1024 and bytes < 1024 * 1024 * 1024 * 1024 * 1024 * 1024:
    bytes = str(round(bytes / 1024 / 1024 / 1024 / 1024 / 1024, 2)) + ' PB' #拍字节
  elif bytes >= 1024 * 1024 * 1024 * 1024 * 1024 * 1024 and bytes < 1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024:
    bytes = str(round(bytes / 1024 / 1024 / 1024 / 1024 / 1024 /1024, 2)) + ' EB' #艾字节
  return bytes
 
if __name__ == '__main__':
  print('0:' + bytes(0))
  print('1:' + bytes(1))
  print('2:' + bytes(10))
  print('3:' + bytes(100))
  print('4:' + bytes(1000))
  print('5:' + bytes(10000))
  print('6:' + bytes(100000))
  print('7:' + bytes(1000000))
  print('8:' + bytes(10000000))
  print('9:' + bytes(100000000))
  print('10:' + bytes(1000000000))
  print('11:' + bytes(10000000000))
  print('12:' + bytes(100000000000))
  print('13:' + bytes(1000000000000))
  print('14:' + bytes(10000000000000))
  print('15:' + bytes(100000000000000))
  print('16:' + bytes(1000000000000000))
  print('17:' + bytes(10000000000000000))
  print('18:' + bytes(100000000000000000))
  print('19:' + bytes(1000000000000000000))
  print('20:' + bytes(10000000000000000000))
  print('20:' + bytes(100000000000000000000))
  print('20:' + bytes(1000000000000000000000))

测试:

"D:\Program Files\Python\Python36\python.exe" C:/Users/Jochen/PycharmProjects/mysite/bytes.py
0:0 B
1:1 B
2:10 B
3:100 B
4:1000 B
5:9.77 KB
6:97.66 KB
7:976.56 KB
8:9.54 MB
9:95.37 MB
10:953.67 MB
11:9.31 GB
12:93.13 GB
13:931.32 GB
14:9.09 TB
15:90.95 TB
16:909.49 TB
17:8.88 PB
18:88.82 PB
19:888.18 PB
20:8.67 EB
20:86.74 EB
20:867.36 EB

Process finished with exit code 0

到此这篇关于Python字节单位转换(将字节转换为K M G T)的文章就介绍到这了,更多相关Python字节单位转换内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
Django中实现一个高性能计数器(Counter)实例
Jul 09 Python
python使用Flask框架获取用户IP地址的方法
Mar 21 Python
python实现将元祖转换成数组的方法
May 04 Python
python正则表达式之作业计算器
Mar 18 Python
LRUCache的实现原理及利用python实现的方法
Nov 21 Python
django使用html模板减少代码代码解析
Dec 12 Python
在Python中append以及extend返回None的例子
Jul 20 Python
pycharm创建scrapy项目教程及遇到的坑解析
Aug 15 Python
简单了解为什么python函数后有多个括号
Dec 19 Python
解决Tensorboard可视化错误:不显示数据 No scalar data was found
Feb 15 Python
Python限制内存和CPU使用量的方法(Unix系统适用)
Aug 04 Python
JupyterNotebook 输出窗口的显示效果调整实现
Sep 22 Python
Python使用cn2an实现中文数字与阿拉伯数字的相互转换
Mar 02 #Python
jupyter notebook指定启动目录的方法
Mar 02 #Python
python实现发送邮件
Mar 02 #Python
matplotlib阶梯图的实现(step())
Mar 02 #Python
Python读写Excel表格的方法
Mar 02 #Python
Python绘制K线图之可视化神器pyecharts的使用
Mar 02 #Python
python中Pexpect的工作流程实例讲解
Mar 02 #Python
You might like
如何去掉文章里的 html 语法
2006/10/09 PHP
解析PHP中intval()等int转换时的意外异常情况
2013/06/21 PHP
php生成N个不重复的随机数实例
2013/11/12 PHP
Linux下手动编译安装PHP扩展的例子分享
2014/07/15 PHP
PHP文件与目录操作示例
2016/12/24 PHP
微信公众号之主动给用户发送消息功能
2019/06/22 PHP
JavaScript window.setTimeout() 的详细用法
2009/11/04 Javascript
js Select下拉列表框进行多选、移除、交换内容的具体实现方法
2013/08/13 Javascript
js鼠标悬浮出现遮罩层的方法
2015/01/28 Javascript
JavaScript中常用的六种互动方法示例
2015/03/13 Javascript
javascript闭包的理解
2015/04/01 Javascript
JQuery实现动态添加删除评论的方法
2015/05/18 Javascript
基于jQuery实现仿百度首页换肤背景图片切换代码
2015/08/25 Javascript
微信jssdk在iframe页面失效问题的解决措施
2016/03/03 Javascript
JavaScript判断用户名和密码不能为空的实现代码
2016/05/16 Javascript
JS Array创建及concat()split()slice()的使用方法
2016/06/03 Javascript
Angular4如何自定义首屏的加载动画详解
2017/07/26 Javascript
JavaScript数组去重算法实例小结
2018/05/07 Javascript
浅谈Vue render函数在ElementUi中的应用
2018/09/06 Javascript
详解Vue项目引入CreateJS的方法(亲测可用)
2019/05/30 Javascript
微信小程序页面调用自定义组件内的事件详解
2019/09/12 Javascript
v-slot和slot、slot-scope之间相互替换实例
2020/09/04 Javascript
Vue 数据绑定的原理分析
2020/11/16 Javascript
[02:18]《我与DAC》之工作人员:为了热爱DOTA2的玩家们
2018/03/28 DOTA
python和shell变量互相传递的几种方法
2013/11/20 Python
python3获取当前文件的上一级目录实例
2018/04/26 Python
python提取图像的名字*.jpg到txt文本的方法
2018/05/10 Python
对Python 数组的切片操作详解
2018/07/02 Python
Python实现针对json中某个关键字段进行排序操作示例
2018/12/25 Python
python爬虫爬取图片的简单代码
2021/01/18 Python
HTML5里的placeholder属性使用实例和美化显示效果的方法
2014/04/23 HTML / CSS
团员个人的自我评价
2013/12/02 职场文书
房地产销售员的自我评价分享
2013/12/04 职场文书
兼职安全员岗位职责
2015/02/15 职场文书
民主评议教师党员自我评价
2015/03/04 职场文书
一条 SQL 语句执行过程
2022/03/17 MySQL