您可以这样做,在
rb
模式下对文件进行
rb
,并检查当前的
byte
是否为
printable
,如果不是
print
为
hex value
,则为
print
作为
character
。
代码语言:
javascript
复制
import string
with open("file name", "rb") as file:
data = file.read()
# to print, go through the file data
for byte in data:
# check if the byte is printable