python 字節轉換:struct
阿新 • • 發佈:2018-07-29
字節序 onos pac hit 一個數 gin print rap space 官網符號說明:https://docs.python.org/3/library/struct.html#format-characters
將一個32位的unsigned int 型數,拆分成4個的字節: pack
import struct print (struct.pack('>I', 10240099)) # '>' 表示轉換成big-endian,即網絡字節序, 'I'表示'10240099'是4個字節的無符號整 # 形數 d = struct.pack('<I', 10240099) # '<' 表示轉換成little-endian print (d)
運行結果:
b'\x00\x9c@c' b'c@\x9c\x00'
把相應的位數整合成一個數:unpack
a = struct.pack('>I', 10240099) b = struct.unpack('>I', a) #將a 的字節按big-endian轉換成一個4字節表示的無符號整型數 print (b) c = struct.unpack('>IH', b'\xf0\xf0\xf0\xf0\x80\x80') print (c)
運行結果:
(10240099,) (4042322160, 32896) #(I, H)
python 字節轉換:struct