“Python Run Exe” Respostas de código

Como correr um .exe através do Python

import os
os.startfile("C:\Documents and Settings\flow_model\flow.exe")
Daneel Brookes

como iniciar um arquivo exe no python


import sys, string, os, arcgisscripting
os.system("C:/Documents and Settings/flow_model/flow.exe")
Successful Skylark

Python Run Exe

##### Sol_1
import subprocess
subprocess.call(["path_to_exe.exe",'parameter_1','parameter_2'])

##### Sol_2
import os
os.startfile("path_to_exe.exe",'parameter_1','parameter_2')
Assassin

Executar calc.exe dentro de Python

import subprocess
subprocess.Popen("C:\Documents and Settings\flow_model\flow.exe")
Powerful Puffin

Respostas semelhantes a “Python Run Exe”

Perguntas semelhantes a “Python Run Exe”

Mais respostas relacionadas para “Python Run Exe” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código