Python membaca biner

with open("data.bin", "rb") as data:
  byte = data.read()

print(byte)
  
Mohammed Albaqer