python進位轉換(讀取純二進位檔案內容)

來源:互聯網
上載者:User

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刷屏的效果,是不是有點駭客帝國的趕腳啊,呵呵 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.