Lire le fichier binaire Python
file = open("sample.bin", "rb")
binary_data = file. read()
Maximilian Walker
file = open("sample.bin", "rb")
binary_data = file. read()
with open("myfile", "rb") as f:
byte = f.read(1)
while byte != b"":
# Do stuff with byte.
byte = f.read(1)