Horje
how to launch an application using python Code Example
how to open any application using 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
how to launch an application using 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.




Python

Related
Convert the sklearn.dataset cancer to a DataFrame. Code Example Convert the sklearn.dataset cancer to a DataFrame. Code Example
create period pandas Code Example create period pandas Code Example
how to make a blank window open up in python Code Example how to make a blank window open up in python Code Example
telegram markdown syntax Code Example telegram markdown syntax Code Example
ModuleNotFoundError: No module named 'sklearn' Code Example ModuleNotFoundError: No module named 'sklearn' Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7