Python Lire le fichier trj binaire

with open(fileName, mode='rb') as file: # b is important -> binary
    fileContent = file.read()
Deefloral