Como ler um arquivo .exe em python

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