<Little Endian , 리틀 엔디안>


>>> struct.pack('<L',0x41424344)

'DCBA'


<Big Endian, 빅 엔디안>


>>> struct.pack('>L',0x41424344)

'ABCD'

+ Recent posts