I have a 3-dimensional matrix (150x50x27) as a bin file. In the Julia programming language, I used
data=deserialize("administration/data.bin")
and it showed the 3D matrix well.
In Python, I tried
f=open("administration/data.bin","rb")
data=f.read()
However, it shows the strange result as follow:
b'7JL\x11\x04\x00...(omit)..xaa\xd3\xcb~\xd9\x80\xe7@'
how to solve it?