Answers for "python open an exe file"

3

how to start an exe file in python

import sys, string, os, arcgisscripting
os.system("C:/Documents and Settings/flow_model/flow.exe")
Posted by: Guest on May-18-2020
1

how to read a .exe file in python

f = open('filename.exe', 'r+b') //'r+b' means read and write binary
Posted by: Guest on March-21-2021

Python Answers by Framework

Browse Popular Code Answers by Language