Python字節(jié)單位轉(zhuǎn)換(將字節(jié)轉(zhuǎn)換為K M G T)
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’ % npython編寫的儲存單位轉(zhuǎn)換代碼(以字節(jié)(B)為單位)
def bytes(bytes): if bytes < 1024: #比特 bytes = str(round(bytes, 2)) + ’ B’ #字節(jié) elif bytes >= 1024 and bytes < 1024 * 1024: bytes = str(round(bytes / 1024, 2)) + ’ KB’ #千字節(jié) elif bytes >= 1024 * 1024 and bytes < 1024 * 1024 * 1024: bytes = str(round(bytes / 1024 / 1024, 2)) + ’ MB’ #兆字節(jié) elif bytes >= 1024 * 1024 * 1024 and bytes < 1024 * 1024 * 1024 * 1024: bytes = str(round(bytes / 1024 / 1024 / 1024, 2)) + ’ GB’ #千兆字節(jié) elif bytes >= 1024 * 1024 * 1024 * 1024 and bytes < 1024 * 1024 * 1024 * 1024 * 1024: bytes = str(round(bytes / 1024 / 1024 / 1024 / 1024, 2)) + ’ TB’ #太字節(jié) 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’ #拍字節(jié) 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’ #艾字節(jié) 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 FilesPythonPython36python.exe' C:/Users/Jochen/PycharmProjects/mysite/bytes.py0:0 B1:1 B2:10 B3:100 B4:1000 B5:9.77 KB6:97.66 KB7:976.56 KB8:9.54 MB9:95.37 MB10:953.67 MB11:9.31 GB12:93.13 GB13:931.32 GB14:9.09 TB15:90.95 TB16:909.49 TB17:8.88 PB18:88.82 PB19:888.18 PB20:8.67 EB20:86.74 EB20:867.36 EB
Process finished with exit code 0
到此這篇關(guān)于Python字節(jié)單位轉(zhuǎn)換(將字節(jié)轉(zhuǎn)換為K M G T)的文章就介紹到這了,更多相關(guān)Python字節(jié)單位轉(zhuǎn)換內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. WML語言的基本情況2. Python過濾掉numpy.array中非nan數(shù)據(jù)實(shí)例3. python利用platform模塊獲取系統(tǒng)信息4. Python 多線程之threading 模塊的使用5. CSS代碼檢查工具stylelint的使用方法詳解6. 淺談python多線程和多線程變量共享問題介紹7. Python如何批量獲取文件夾的大小并保存8. react axios 跨域訪問一個或多個域名問題9. Python的Tqdm模塊實(shí)現(xiàn)進(jìn)度條配置10. python 實(shí)現(xiàn)rolling和apply函數(shù)的向下取值操作
