Comment lire un fichier .exe dans Python

f = open('filename.exe', 'r+b') //'r+b' means read and write binary
Mushy Mockingbird