I want to open some data from a bin file
import io
data=io.open('bpsk_2m_b11.rd16','rb').read()
print (data)
But there appear to be some ASCII symbols, e.g. (i mean '{' and 'k','w' )
b'\xde{\x1d\x86\xa0\x81kw\xbc\x8a'
I'm fine with the whole formating thing but how can I replace those ASCII symbols with hex? Or should I use some other mode to read this file?