binascii 模組:
它包含一個把位元值轉換成十六進位的函數,同樣也可以反過來轉。 #binary_value是位元值不是字串,也不是int型的1010
binascii.b2a_hex(binary_value) ##binary_value 一般讀二進位檔案可以得到>>'89' <type str>
python內建的builtin函數:
bin(num) 十進位數值 ===》二進位字串
bin(10)>> '0b1010' <type, str>
oct(num) 十進位數值 ===》八進位字串
oct(10)>>'012' <type, str>
hex(num) 十進位數值 ===》十六進位字串
hex(20)>>'0x14' <type, str>
int(str, base) 其它進位字串 ===》十進位的數值,其中base代表str具體是屬於哪個進位,如果是2則表示str是二進位, 預設base為十進位
int('20')>>20 <type, int>int('10', 2)>>2 <type, int>int('10', 8)>>8 <type, int>int('20', 10)>>20 <type, int>int('20',16)>>32 <type, int>
字元與數字轉換函式:
chr(int) 整型 轉 字元
chr(65)>>'A', <type, str>
ord(chr) 字元 轉 整型
ord('a')>>97, <type, int>
最後,給一個讀取圖片檔案二進位內容的樣本:
#!/usr/bin/env python #encoding: utf-8import binascii fh = open(r'C:\Temp\img\2012517165556.png', 'rb')a = fh.read()#print 'raw: ',`a`,type(a)hexstr = binascii.b2a_hex(a) #得到一個16進位的數#print 'hex: ',hexstr, type(hexstr)bsstr = bin(int(hexstr,16))[2:]print 'bin: ',bsstr, type(bsstr)
1010刷屏的效果,是不是有點駭客帝國的趕腳啊,呵呵