So lesen Sie eine .exe -Datei in Python

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