梅花香自苦寒来 打开图片可以看到,在jpg后面有大量的数据,将它保存出来,可以看出是十六进制,将它转为ascii,写脚本 with open('hex.txt','r') as h: h=h.read() tem='' for i in range(0,len(h),2): tem='0x'+h[i]+h[i+1] tem=int(tem,base=16) print(chr(tem),end='') 得到 (7,7) (7,8) (7,9) (7,10) (7,11) (7,12) (7,13…