“So öffnen Sie eine Anwendung mit Python” Code-Antworten

So öffnen Sie eine Anwendung mit 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

Offene Anwendungen von Python

dir = 'C:\\myprogram.exe'

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

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

So starten Sie eine Anwendung mit 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

Ähnliche Antworten wie “So öffnen Sie eine Anwendung mit Python”

Fragen ähnlich wie “So öffnen Sie eine Anwendung mit Python”

Weitere verwandte Antworten zu “So öffnen Sie eine Anwendung mit Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen