在我的印象里面進(jìn)制互相轉(zhuǎn)換確實(shí)是很常見的問題,所以在Python中,自然也少不了把下面這些代碼收為util。
這是從網(wǎng)上搜索的一篇也的還可以的Python進(jìn)制轉(zhuǎn)換,經(jīng)過驗(yàn)證可以使用。下面貼出它的實(shí)現(xiàn)代碼:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# 2/10/16 base trans. wrote by srcdog on 20th, April, 2009
# ld elements in base 2, 10, 16.
import os,sys
# global definition
# base = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F]
base = [str(x) for x in range(10)] + [ chr(x) for x in range(ord('A'),ord('A')+6)]
# bin2dec
# 二進(jìn)制 to 十進(jìn)制: int(str,n=10)
def bin2dec(string_num):
return str(int(string_num, 2))
# hex2dec
# 十六進(jìn)制 to 十進(jìn)制
def hex2dec(string_num):
return str(int(string_num.upper(), 16))
# dec2bin
# 十進(jìn)制 to 二進(jìn)制: bin()
def dec2bin(string_num):
num = int(string_num)
mid = []
while True:
if num == 0: break
num,rem = divmod(num, 2)
mid.append(base[rem])
return ''.join([str(x) for x in mid[::-1]])
# dec2hex
# 十進(jìn)制 to 八進(jìn)制: oct()
# 十進(jìn)制 to 十六進(jìn)制: hex()
def dec2hex(string_num):
num = int(string_num)
mid = []
while True:
if num == 0: break
num,rem = divmod(num, 16)
mid.append(base[rem])
return ''.join([str(x) for x in mid[::-1]])
# hex2tobin
# 十六進(jìn)制 to 二進(jìn)制: bin(int(str,16))
def hex2bin(string_num):
return dec2bin(hex2dec(string_num.upper()))
# bin2hex
# 二進(jìn)制 to 十六進(jìn)制: hex(int(str,2))
def bin2hex(string_num):
return dec2hex(bin2dec(string_num))
更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主
微信掃碼或搜索:z360901061
微信掃一掃加我為好友
QQ號(hào)聯(lián)系: 360901061
您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺我的文章對(duì)您有幫助,請(qǐng)用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長(zhǎng)非常感激您!手機(jī)微信長(zhǎng)按不能支付解決辦法:請(qǐng)將微信支付二維碼保存到相冊(cè),切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對(duì)您有幫助就好】元

