Pythonでバイナリファイルを読み書き操作
方法1
opfile=open('d:\\t’,’rb’)
s=opfile.read(1)
byte=ord(s)
print hex(byte)
方法2
import struct
opfile=open('d:\\t’,’rb’).read(1)
print struct.unpack('c’,opfile)
print struct.unpack('b’,opfile)
Coding Changes the World
方法1
opfile=open('d:\\t’,’rb’)
s=opfile.read(1)
byte=ord(s)
print hex(byte)
方法2
import struct
opfile=open('d:\\t’,’rb’).read(1)
print struct.unpack('c’,opfile)
print struct.unpack('b’,opfile)