Как прочитать файл .exe в Python

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