“Como abrir qualquer aplicativo usando Python” Respostas de código

Como abrir qualquer aplicativo usando Python

import os

os.system("program_name") # To open any program by their name recognized by windows

# OR

os.startfile("path to application or any file") # Open any program, text or office document
Action Kamen

Abra aplicativos por Python

dir = 'C:\\myprogram.exe'

import os
os.startfile(dir)
os.system(dir)

import subprocess
subprocess.Popen([dir])
subprocess.call(dir)
Erorri Motrali

como lançar um aplicativo usando python

import subprocess

subprocess.Popen("C:\\Windows\\System32\\notepad.exe") #This will launch notepad But you can enter the path of an executable and this will launch it.
not_A_Developer

Respostas semelhantes a “Como abrir qualquer aplicativo usando Python”

Perguntas semelhantes a “Como abrir qualquer aplicativo usando Python”

Mais respostas relacionadas para “Como abrir qualquer aplicativo usando Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código