how to read a exe file in python

Solutions on MaxInterview for how to read a exe file in python by the best coders in the world

showing results for - "how to read a exe file in python"
Grégoire
28 Jun 2017
1f = open('filename.exe', 'r+b') //'r+b' means read and write binary
2