码迷,mamicode.com
首页 > 编程语言 > 详细

Python 之字节转换

时间:2015-07-14 17:12:05      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

 1 # coding: utf-8
 2 
 3 def bytes2human(n):
 4     """
 5     >>> bytes2human(10000)
 6     9K
 7     >>> bytes2human(100001221)
 8     95M
 9     """
10     symbols = (K, M, G, T, P, E, Z, Y)
11     prefix     = {}
12     for i, s in enumerate(symbols):
13         prefix[s] = 1 << (i+1)*10
14     
15     for s in reversed(symbols):
16         if n >= prefix[s]:
17             value = int(float(n)/prefix[s])
18             return %s%s % (value, s)
19     return %sB % n

 

Python 之字节转换

标签:

原文地址:http://www.cnblogs.com/liuq/p/4645488.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!